blob: 01b366a6933b511e2bb46ee0366e8f36d17477f5 [file] [log] [blame]
[email protected]ae43b852012-02-25 00:10:141// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]267c03d2011-02-02 23:03:072// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef UI_GFX_CANVAS_SKIA_PAINT_H_
6#define UI_GFX_CANVAS_SKIA_PAINT_H_
[email protected]267c03d2011-02-02 23:03:077
[email protected]263fc7a2012-10-30 13:46:128// This file provides an easy way to include the appropriate CanvasPaint
9// header file on your platform.
[email protected]267c03d2011-02-02 23:03:0710
jbauman232319d2015-05-11 21:09:2611#if defined(__APPLE__)
[email protected]263fc7a2012-10-30 13:46:1212#include "ui/gfx/canvas_paint_mac.h"
[email protected]263fc7a2012-10-30 13:46:1213#else
14#error "No canvas paint for this platform"
15#endif
[email protected]267c03d2011-02-02 23:03:0716
17#endif // UI_GFX_CANVAS_SKIA_PAINT_H_