Index: chrome/renderer/print_web_view_helper_win.cc |
=================================================================== |
--- chrome/renderer/print_web_view_helper_win.cc (revision 85672) |
+++ chrome/renderer/print_web_view_helper_win.cc (working copy) |
@@ -79,7 +79,7 @@ |
scoped_ptr<Metafile> metafile(new printing::NativeMetafile); |
metafile->Init(); |
DCHECK(metafile->context()); |
- skia::PlatformDevice::InitializeDC(metafile->context()); |
+ skia::InitializeDC(metafile->context()); |
int page_number = params.page_number; |
@@ -220,7 +220,7 @@ |
static_cast<int>(margin_top_in_points), |
static_cast<int>(content_width_in_points), |
static_cast<int>(content_height_in_points)); |
- skia::PlatformDevice* device = (*metafile)->StartPageForVectorCanvas( |
+ SkDevice* device = (*metafile)->StartPageForVectorCanvas( |
page_size, content_area, frame->getPrintPageShrink(page_number)); |
DCHECK(device); |
skia::VectorCanvas canvas(device); |
@@ -275,7 +275,7 @@ |
metafile2->Init(); |
HDC hdc = metafile2->context(); |
DCHECK(hdc); |
- skia::PlatformDevice::InitializeDC(hdc); |
+ skia::InitializeDC(hdc); |
RECT metafile_bounds = (*metafile)->GetPageBounds(1).ToRECT(); |
// Process the old metafile, placing all non-AlphaBlend calls into the |