diff options
Diffstat (limited to 'content/browser')
-rw-r--r-- | content/browser/renderer_host/render_widget_host_view_win.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/content/browser/renderer_host/render_widget_host_view_win.cc b/content/browser/renderer_host/render_widget_host_view_win.cc index fcfeac8..e4796c8 100644 --- a/content/browser/renderer_host/render_widget_host_view_win.cc +++ b/content/browser/renderer_host/render_widget_host_view_win.cc @@ -926,9 +926,7 @@ void RenderWidgetHostViewWin::AsyncCopyFromCompositingSurface( const gfx::Size& size, skia::PlatformCanvas* output, base::Callback<void(bool)> callback) { - // TODO(mazda): Implement this. - NOTIMPLEMENTED(); - callback.Run(false); + callback.Run(CopyFromCompositingSurface(size, output)); } void RenderWidgetHostViewWin::SetBackground(const SkBitmap& background) { |