diff options
author | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-06 22:12:33 +0000 |
---|---|---|
committer | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-06 22:12:33 +0000 |
commit | 973b7701f2be80ea89cc0799912b64b76a30de5d (patch) | |
tree | 2a6e7f587d9e94e26d8a30d56491f2a9fb4621db /skia/ext/platform_device_win.h | |
parent | 00174ef7842eef55f7d697fedf947b5ad415368c (diff) | |
download | chromium_src-973b7701f2be80ea89cc0799912b64b76a30de5d.zip chromium_src-973b7701f2be80ea89cc0799912b64b76a30de5d.tar.gz chromium_src-973b7701f2be80ea89cc0799912b64b76a30de5d.tar.bz2 |
Fixed a few styles issues in skia::PlatformDevice. Made function names consistent. Added Begin/EndPlatformPaint on Mac.
Review URL: http://codereview.chromium.org/6691067
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80707 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/platform_device_win.h')
-rw-r--r-- | skia/ext/platform_device_win.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skia/ext/platform_device_win.h b/skia/ext/platform_device_win.h index 966b49f..5523ef9 100644 --- a/skia/ext/platform_device_win.h +++ b/skia/ext/platform_device_win.h @@ -30,10 +30,10 @@ class SK_API PlatformDevice : public SkDevice { // The DC that corresponds to the bitmap, used for GDI operations drawing // into the bitmap. This is possibly heavyweight, so it should be existant // only during one pass of rendering. - virtual HDC beginPlatformPaint() = 0; + virtual PlatformSurface BeginPlatformPaint() = 0; // Finish a previous call to beginPlatformPaint. - virtual void endPlatformPaint() { } + virtual void EndPlatformPaint(); // Draws to the given screen DC, if the bitmap DC doesn't exist, this will // temporarily create it. However, if you have created the bitmap DC, it will |