| Index: content/browser/renderer_host/render_widget_host_view_win.cc
|
| 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 fcfeac8668a7e1e134a9dd0c43aa1c674a2b7eff..73056b164b9a40ff1184c89f2552f0d90110a19b 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_win.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_win.cc
|
| @@ -663,6 +663,11 @@ bool RenderWidgetHostViewWin::HasFocus() const {
|
| return ::GetFocus() == m_hWnd;
|
| }
|
|
|
| +bool RenderWidgetHostViewWin::IsSurfaceAvailableForCopy() const {
|
| + return !!render_widget_host_->GetBackingStore(false) ||
|
| + !!accelerated_surface_.get();
|
| +}
|
| +
|
| void RenderWidgetHostViewWin::Show() {
|
| if (!is_fullscreen_) {
|
| DCHECK(parent_hwnd_);
|
|
|