summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvangelis@chromium.org <vangelis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-02 19:31:13 +0000
committervangelis@chromium.org <vangelis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-02 19:31:13 +0000
commit4acc754948d67979ded5ef261b219685f7a91542 (patch)
treea9fd70bfdfaec047670e08e9105b997350b7ee12
parent83baa283eae4b154a7d71958c1610bce672f9839 (diff)
downloadchromium_src-4acc754948d67979ded5ef261b219685f7a91542.zip
chromium_src-4acc754948d67979ded5ef261b219685f7a91542.tar.gz
chromium_src-4acc754948d67979ded5ef261b219685f7a91542.tar.bz2
Remove the SWP_SHOWWINDOW flag when resizing the compositor host window on the gpu process. If the compositor window is hidden
then it needs to remain hidden. BUG=80847 Review URL: http://codereview.chromium.org/6901144 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83760 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/browser/gpu_process_host_ui_shim.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/gpu_process_host_ui_shim.cc b/content/browser/gpu_process_host_ui_shim.cc
index d553e78..b02bbb8 100644
--- a/content/browser/gpu_process_host_ui_shim.cc
+++ b/content/browser/gpu_process_host_ui_shim.cc
@@ -280,7 +280,7 @@ void GpuProcessHostUIShim::OnResizeView(int32 renderer_id,
size.width(),
size.height(),
SWP_NOSENDCHANGING | SWP_NOCOPYBITS | SWP_NOZORDER |
- SWP_NOACTIVATE | SWP_DEFERERASE | SWP_SHOWWINDOW);
+ SWP_NOACTIVATE | SWP_DEFERERASE);
#endif
}
}