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

Unified Diff: base/gfx/bitmap_platform_device.h

Issue 1616: Refactor the platform canvas unit test a bit so that it can be run on... (Closed) Base URL: http://src.chromium.org/svn/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/SConscript ('k') | base/gfx/bitmap_platform_device_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/gfx/bitmap_platform_device.h
===================================================================
--- base/gfx/bitmap_platform_device.h (revision 1835)
+++ base/gfx/bitmap_platform_device.h (working copy)
@@ -6,17 +6,25 @@
// that can be used by upper-level classes that just need to pass a reference
// around.
+#if defined(OS_WIN)
+#include "base/gfx/bitmap_platform_device_win.h"
namespace gfx {
-#if defined(OS_WIN)
-class BitmapPlatformDeviceWin;
typedef BitmapPlatformDeviceWin BitmapPlatformDevice;
+
+}
#elif defined(OS_MACOSX)
-class BitmapPlatformDeviceMac;
+#include "base/gfx/bitmap_platform_device_mac.h"
+namespace gfx {
+
typedef BitmapPlatformDeviceMac BitmapPlatformDevice;
+
+}
#elif defined(OS_LINUX)
-class BitmapPlatformDeviceLinux;
+#include "base/gfx/bitmap_platform_device_linux.h"
+namespace gfx {
+
typedef BitmapPlatformDeviceLinux BitmapPlatformDevice;
+
+}
#endif
-
-} // namespace gfx
« no previous file with comments | « base/gfx/SConscript ('k') | base/gfx/bitmap_platform_device_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698