summaryrefslogtreecommitdiffstats
path: root/skia/ext/bitmap_platform_device_mac.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-16 18:09:28 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-16 18:09:28 +0000
commit1d20cdf4cb74b3a1b47c7bd62d3e3d17be4c6013 (patch)
treec6fb735e4c27f3e693e2607ca2e02fede2288834 /skia/ext/bitmap_platform_device_mac.h
parent3843213f9024e066f7107c071dc711be31f44487 (diff)
downloadchromium_src-1d20cdf4cb74b3a1b47c7bd62d3e3d17be4c6013.zip
chromium_src-1d20cdf4cb74b3a1b47c7bd62d3e3d17be4c6013.tar.gz
chromium_src-1d20cdf4cb74b3a1b47c7bd62d3e3d17be4c6013.tar.bz2
Fix some of the more common chromium-style errors on the mac clang builder.
BUG=none TEST=compiles Review URL: http://codereview.chromium.org/6525038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75141 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/bitmap_platform_device_mac.h')
-rw-r--r--skia/ext/bitmap_platform_device_mac.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/skia/ext/bitmap_platform_device_mac.h b/skia/ext/bitmap_platform_device_mac.h
index 20d8918..5723c85 100644
--- a/skia/ext/bitmap_platform_device_mac.h
+++ b/skia/ext/bitmap_platform_device_mac.h
@@ -58,9 +58,7 @@ class BitmapPlatformDevice : public PlatformDevice {
BitmapPlatformDevice(const BitmapPlatformDevice& other);
virtual ~BitmapPlatformDevice();
- virtual SkDeviceFactory* getDeviceFactory() {
- return SkNEW(BitmapPlatformDeviceFactory);
- }
+ virtual SkDeviceFactory* getDeviceFactory();
// See warning for copy constructor above.
BitmapPlatformDevice& operator=(const BitmapPlatformDevice& other);
@@ -71,7 +69,7 @@ class BitmapPlatformDevice : public PlatformDevice {
virtual void DrawToContext(CGContextRef context, int x, int y,
const CGRect* src_rect);
virtual void makeOpaque(int x, int y, int width, int height);
- virtual bool IsVectorial() { return false; }
+ virtual bool IsVectorial();
// Returns the color value at the specified location. This does not
// consider any transforms that may be set on the device.