diff options
Diffstat (limited to 'skia/ext/vector_canvas.h')
-rw-r--r-- | skia/ext/vector_canvas.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skia/ext/vector_canvas.h b/skia/ext/vector_canvas.h index 4b4419d..aac0400 100644 --- a/skia/ext/vector_canvas.h +++ b/skia/ext/vector_canvas.h @@ -8,9 +8,9 @@ #include "skia/ext/platform_canvas.h" -namespace skia { +class SkDevice; -class PlatformDevice; +namespace skia { // This class is a specialization of the regular PlatformCanvas. It is designed // to work with a VectorDevice to manage platform-specific drawing. It allows @@ -19,7 +19,7 @@ class PlatformDevice; class SK_API VectorCanvas : public PlatformCanvas { public: // Ownership of |device| is transfered to VectorCanvas. - explicit VectorCanvas(PlatformDevice* device); + explicit VectorCanvas(SkDevice* device); virtual ~VectorCanvas(); virtual SkBounder* setBounder(SkBounder* bounder); |