[email protected] | ae43b85 | 2012-02-25 00:10:14 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 267c03d | 2011-02-02 23:03:07 | [diff] [blame] | 2 | // 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] | 267c03d | 2011-02-02 23:03:07 | [diff] [blame] | 7 | |
[email protected] | 263fc7a | 2012-10-30 13:46:12 | [diff] [blame] | 8 | // This file provides an easy way to include the appropriate CanvasPaint |
9 | // header file on your platform. | ||||
[email protected] | 267c03d | 2011-02-02 23:03:07 | [diff] [blame] | 10 | |
jbauman | 232319d | 2015-05-11 21:09:26 | [diff] [blame] | 11 | #if defined(__APPLE__) |
[email protected] | 263fc7a | 2012-10-30 13:46:12 | [diff] [blame] | 12 | #include "ui/gfx/canvas_paint_mac.h" |
[email protected] | 263fc7a | 2012-10-30 13:46:12 | [diff] [blame] | 13 | #else |
14 | #error "No canvas paint for this platform" | ||||
15 | #endif | ||||
[email protected] | 267c03d | 2011-02-02 23:03:07 | [diff] [blame] | 16 | |
17 | #endif // UI_GFX_CANVAS_SKIA_PAINT_H_ |