Index: skia/ext/platform_canvas_win.cc |
=================================================================== |
--- skia/ext/platform_canvas_win.cc (revision 80484) |
+++ skia/ext/platform_canvas_win.cc (working copy) |
@@ -107,13 +107,11 @@ |
} |
HDC PlatformCanvas::beginPlatformPaint() const { |
- return getTopPlatformDevice().beginPlatformPaint(); |
+ return getTopPlatformDevice().BeginPlatformPaint(); |
} |
void PlatformCanvas::endPlatformPaint() const { |
- // we don't clear the DC here since it will be likely to be used again |
- // flushing will be done in onAccessBitmap |
- return getTopPlatformDevice().endPlatformPaint(); |
+ return getTopPlatformDevice().EndPlatformPaint(); |
} |
} // namespace skia |