diff options
-rw-r--r-- | base/gfx/platform_canvas.h | 4 | ||||
-rw-r--r-- | webkit/port/platform/graphics/SkGraphicsContext.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/base/gfx/platform_canvas.h b/base/gfx/platform_canvas.h index 192d7dc..3219a7a 100644 --- a/base/gfx/platform_canvas.h +++ b/base/gfx/platform_canvas.h @@ -9,6 +9,7 @@ #include "build/build_config.h" namespace gfx { + #if defined(OS_WIN) class PlatformCanvasWin; typedef PlatformCanvasWin PlatformCanvas; @@ -16,4 +17,5 @@ typedef PlatformCanvasWin PlatformCanvas; class PlatformCanvasMac; typedef PlatformCanvasMac PlatformCanvas; #endif -} + +} // namespace gfx diff --git a/webkit/port/platform/graphics/SkGraphicsContext.h b/webkit/port/platform/graphics/SkGraphicsContext.h index 74c2fa0..f1e9698 100644 --- a/webkit/port/platform/graphics/SkGraphicsContext.h +++ b/webkit/port/platform/graphics/SkGraphicsContext.h @@ -5,9 +5,8 @@ #ifndef SkGraphicsContext_h #define SkGraphicsContext_h -#include "SkPorterDuff.h" - #include "base/gfx/platform_canvas.h" +#include "SkPorterDuff.h" class NativeImageSkia; struct SkIRect; |