diff options
Diffstat (limited to 'printing/metafile.h')
-rw-r--r-- | printing/metafile.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/printing/metafile.h b/printing/metafile.h index 84c0556..c155fbc 100644 --- a/printing/metafile.h +++ b/printing/metafile.h @@ -25,7 +25,9 @@ class Rect; class Size; } -class SkDevice; +namespace skia { +class PlatformDevice; +} #if defined(OS_CHROMEOS) namespace base { @@ -54,7 +56,7 @@ class Metafile { // This method calls StartPage and then returns an appropriate // VectorPlatformDevice implementation bound to the context created by // StartPage or NULL on error. - virtual SkDevice* StartPageForVectorCanvas( + virtual skia::PlatformDevice* StartPageForVectorCanvas( const gfx::Size& page_size, const gfx::Rect& content_area, const float& scale_factor) = 0; |