| Index: content/browser/renderer_host/backing_store_win.cc
|
| ===================================================================
|
| --- content/browser/renderer_host/backing_store_win.cc (revision 85672)
|
| +++ content/browser/renderer_host/backing_store_win.cc (working copy)
|
| @@ -158,10 +158,10 @@
|
| if (!output->initialize(rect.width(), rect.height(), true))
|
| return false;
|
|
|
| - HDC temp_dc = output->beginPlatformPaint();
|
| + HDC temp_dc = skia::BeginPlatformPaint(output);
|
| BitBlt(temp_dc, 0, 0, rect.width(), rect.height(),
|
| hdc(), rect.x(), rect.y(), SRCCOPY);
|
| - output->endPlatformPaint();
|
| + skia::EndPlatformPaint(output);
|
| return true;
|
| }
|
|
|
|
|