| Index: chrome/browser/views/tab_contents/tab_contents_view_win.cc
|
| ===================================================================
|
| --- chrome/browser/views/tab_contents/tab_contents_view_win.cc (revision 21711)
|
| +++ chrome/browser/views/tab_contents/tab_contents_view_win.cc (working copy)
|
| @@ -630,6 +630,8 @@
|
| }
|
|
|
| void TabContentsViewWin::WasSized(const gfx::Size& size) {
|
| + UINT swp_flags = SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE;
|
| + SetWindowPos(NULL, 0, 0, size.width(), size.height(), swp_flags);
|
| if (tab_contents()->interstitial_page())
|
| tab_contents()->interstitial_page()->SetSize(size);
|
| if (tab_contents()->render_widget_host_view())
|
|
|