Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: base/gfx/platform_canvas.h

Issue 1853: Refactor the platform canvas unit test a bit so that it can be run on... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/gfx/bitmap_platform_device_mac.h ('k') | base/gfx/platform_canvas_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/gfx/platform_canvas.h
===================================================================
--- base/gfx/platform_canvas.h (revision 1896)
+++ base/gfx/platform_canvas.h (working copy)
@@ -8,17 +8,25 @@
#include "build/build_config.h"
+#if defined(OS_WIN)
+#include "base/gfx/platform_canvas_win.h"
namespace gfx {
-#if defined(OS_WIN)
-class PlatformCanvasWin;
typedef PlatformCanvasWin PlatformCanvas;
+
+} // namespace gfx
#elif defined(OS_MACOSX)
-class PlatformCanvasMac;
+#include "base/gfx/platform_canvas_mac.h"
+namespace gfx {
+
typedef PlatformCanvasMac PlatformCanvas;
+
+} // namespace gfx
#elif defined(OS_LINUX)
-class PlatformCanvasLinux;
+#include "base/gfx/platform_canvas_linux.h"
+namespace gfx {
+
typedef PlatformCanvasLinux PlatformCanvas;
-#endif
} // namespace gfx
+#endif
« no previous file with comments | « base/gfx/bitmap_platform_device_mac.h ('k') | base/gfx/platform_canvas_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698