| Index: content/browser/renderer_host/legacy_render_widget_host_win.cc
|
| diff --git a/content/browser/renderer_host/legacy_render_widget_host_win.cc b/content/browser/renderer_host/legacy_render_widget_host_win.cc
|
| index 6ca6445822c027431da126a18f7173a591bff694..327e0b9b43e73df9a7280366ecd5d05eed899ba2 100644
|
| --- a/content/browser/renderer_host/legacy_render_widget_host_win.cc
|
| +++ b/content/browser/renderer_host/legacy_render_widget_host_win.cc
|
| @@ -82,7 +82,8 @@ void LegacyRenderWidgetHostHWND::Hide() {
|
| void LegacyRenderWidgetHostHWND::SetBounds(const gfx::Rect& bounds) {
|
| gfx::Rect bounds_in_pixel = gfx::win::DIPToScreenRect(bounds);
|
| ::SetWindowPos(hwnd(), NULL, bounds_in_pixel.x(), bounds_in_pixel.y(),
|
| - bounds_in_pixel.width(), bounds_in_pixel.height(), 0);
|
| + bounds_in_pixel.width(), bounds_in_pixel.height(),
|
| + SWP_NOREDRAW);
|
| }
|
|
|
| void LegacyRenderWidgetHostHWND::OnFinalMessage(HWND hwnd) {
|
|
|