| Index: ui/base/clipboard/clipboard_win.cc
|
| ===================================================================
|
| --- ui/base/clipboard/clipboard_win.cc (revision 85672)
|
| +++ ui/base/clipboard/clipboard_win.cc (working copy)
|
| @@ -456,9 +456,9 @@
|
|
|
| gfx::CanvasSkia canvas(width, height, false);
|
|
|
| - HDC destination_dc = canvas.beginPlatformPaint();
|
| + HDC destination_dc = skia::BeginPlatformPaint(&canvas);
|
| ::BitBlt(destination_dc, 0, 0, width, height, source_dc, 0, 0, SRCCOPY);
|
| - canvas.endPlatformPaint();
|
| + skia::EndPlatformPaint(&canvas);
|
| return canvas.ExtractBitmap();
|
| }
|
|
|
|
|