diff options
Diffstat (limited to 'base/gfx/bitmap_platform_device.h')
-rw-r--r-- | base/gfx/bitmap_platform_device.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/base/gfx/bitmap_platform_device.h b/base/gfx/bitmap_platform_device.h index 9b4ecd7..83b74df 100644 --- a/base/gfx/bitmap_platform_device.h +++ b/base/gfx/bitmap_platform_device.h @@ -6,11 +6,17 @@ // that can be used by upper-level classes that just need to pass a reference // around. +namespace gfx { + #if defined(OS_WIN) class BitmapPlatformDeviceWin; typedef BitmapPlatformDeviceWin BitmapPlatformDevice; #elif defined(OS_MACOSX) class BitmapPlatformDeviceMac; typedef BitmapPlatformDeviceMac BitmapPlatformDevice; +#elif defined(OS_LINUX) +class BitmapPlatformDeviceLinux; +typedef BitmapPlatformDeviceLinux BitmapPlatformDevice; #endif +} // namespace gfx |