Index: skia/ext/vector_platform_device_win.h |
=================================================================== |
--- skia/ext/vector_platform_device_win.h (revision 78814) |
+++ skia/ext/vector_platform_device_win.h (working copy) |
@@ -13,13 +13,13 @@ |
namespace skia { |
-class SK_API VectorPlatformDeviceFactory : public SkDeviceFactory { |
+class VectorPlatformDeviceFactory : public SkDeviceFactory { |
public: |
virtual SkDevice* newDevice(SkCanvas* ignored, SkBitmap::Config config, |
int width, int height, |
bool isOpaque, bool isForLayer) OVERRIDE; |
- static PlatformDevice* CreateDevice(int width, int height, bool isOpaque, |
- HANDLE shared_section); |
+ static SkDevice* CreateDevice(int width, int height, bool isOpaque, |
+ HANDLE shared_section); |
}; |
// A device is basically a wrapper around SkBitmap that provides a surface for |