| Index: content/browser/renderer_host/render_widget_host_view_aura.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| index 5affb58b123f770175aaaf88078db11c01ac6962..a1249085e034557a0a64f56f886a14e15ea9bc2a 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| @@ -529,6 +529,14 @@ void RenderWidgetHostViewAura::SetBackground(const SkBitmap& background) {
|
| window_->layer()->SetFillsBoundsOpaquely(background.isOpaque());
|
| }
|
|
|
| +bool RenderWidgetHostViewAura::CopyFromCompositingSurface(
|
| + const gfx::Size& size,
|
| + skia::PlatformCanvas* output) {
|
| + // TODO(mazda): Implement this.
|
| + NOTIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| void RenderWidgetHostViewAura::GetScreenInfo(WebKit::WebScreenInfo* results) {
|
| GetDefaultScreenInfo(results);
|
| }
|
|
|