| Index: skia/ext/platform_canvas.cc
|
| ===================================================================
|
| --- skia/ext/platform_canvas.cc (revision 80026)
|
| +++ skia/ext/platform_canvas.cc (working copy)
|
| @@ -41,4 +41,12 @@
|
| return true;
|
| }
|
|
|
| +PlatformDevice::PlatformSurface BeginPlatformPaint(SkCanvas* canvas) {
|
| + return static_cast<PlatformCanvas*>(canvas)->beginPlatformPaint();
|
| +}
|
| +
|
| +void EndPlatformPaint(SkCanvas* canvas) {
|
| + static_cast<PlatformCanvas*>(canvas)->endPlatformPaint();
|
| +}
|
| +
|
| } // namespace skia
|
|
|