summaryrefslogtreecommitdiffstats
path: root/skia/ext/bitmap_platform_device_mac.h
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-15 20:04:03 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-15 20:04:03 +0000
commit23e891ac1f17ddf3fa4221729b0ebf5fe548a48a (patch)
treed548bf9827fe5ef975594f5021052a875f0f4397 /skia/ext/bitmap_platform_device_mac.h
parent23d3539963fef1639e50b03e32c99f3995b3a0a6 (diff)
downloadchromium_src-23e891ac1f17ddf3fa4221729b0ebf5fe548a48a.zip
chromium_src-23e891ac1f17ddf3fa4221729b0ebf5fe548a48a.tar.gz
chromium_src-23e891ac1f17ddf3fa4221729b0ebf5fe548a48a.tar.bz2
Rename CreateWithContext to Create
Review URL: http://codereview.chromium.org/126150 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18420 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/bitmap_platform_device_mac.h')
-rw-r--r--skia/ext/bitmap_platform_device_mac.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/skia/ext/bitmap_platform_device_mac.h b/skia/ext/bitmap_platform_device_mac.h
index d293cd4..7f1be1e 100644
--- a/skia/ext/bitmap_platform_device_mac.h
+++ b/skia/ext/bitmap_platform_device_mac.h
@@ -26,11 +26,11 @@ namespace skia {
class BitmapPlatformDevice : public PlatformDevice {
public:
// |context| may be NULL.
- static BitmapPlatformDevice* CreateWithContext(CGContextRef context,
- int width, int height,
- bool is_opaque);
+ static BitmapPlatformDevice* Create(CGContextRef context,
+ int width, int height,
+ bool is_opaque);
- // Creates a context for |data| and calls CreateWithContext.
+ // Creates a context for |data| and calls Create.
static BitmapPlatformDevice* CreateWithData(uint8_t* data,
int width, int height,
bool is_opaque);