| Index: content/browser/renderer_host/render_widget_host_view_aura.cc
|
| ===================================================================
|
| --- content/browser/renderer_host/render_widget_host_view_aura.cc (revision 188861)
|
| +++ content/browser/renderer_host/render_widget_host_view_aura.cc (working copy)
|
| @@ -740,6 +740,14 @@
|
| if (!compositor->HasObserver(this))
|
| compositor->AddObserver(this);
|
|
|
| +// On Windows while resizing, the the resize locks makes us mis-paint a white
|
| +// vertical strip (including the non-client area) if the content composition is
|
| +// lagging the UI composition. So here we disable the throttling so that the UI
|
| +// bits can draw ahead of the content thereby reducing the amount of whiteout.
|
| +// Because this causes the content to be drawn at wrong sizes while resizing
|
| +// we compensated by another hack in Compositor::Draw that blocks the UI thread
|
| +// for a fixed amount of time.
|
| +#if !defined (OS_WIN)
|
| bool defer_compositor_lock =
|
| can_lock_compositor_ == NO_PENDING_RENDERER_FRAME ||
|
| can_lock_compositor_ == NO_PENDING_COMMIT;
|
| @@ -749,6 +757,7 @@
|
|
|
| resize_locks_.push_back(make_linked_ptr(
|
| new ResizeLock(root_window, rect.size(), defer_compositor_lock)));
|
| +#endif
|
| }
|
| }
|
| window_->SetBounds(rect);
|
|
|