diff options
author | rohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-03 19:27:28 +0000 |
---|---|---|
committer | rohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-03 19:27:28 +0000 |
commit | ce04f0c9b299f5afbc6a44839f302baabe498cd1 (patch) | |
tree | 83b7b5fb2b88a95930d7a2d9360b7b2427567bb7 /chrome/browser/plugin_process_host.cc | |
parent | ea2cad155442906261ce832585a36630c6f10d98 (diff) | |
download | chromium_src-ce04f0c9b299f5afbc6a44839f302baabe498cd1.zip chromium_src-ce04f0c9b299f5afbc6a44839f302baabe498cd1.tar.gz chromium_src-ce04f0c9b299f5afbc6a44839f302baabe498cd1.tar.bz2 |
[Mac] When in fullscreen mode, ties the menubar shown state to the overlay shown state.
BUG=36610
TEST=Go fullscreen. Menubar should only be shown when the overlay is fully visible.
TEST=While in fullscreen mode, fullscreen a youtube video. Menubar should be autohidden (mousing to the top of the screen should show it).
Review URL: http://codereview.chromium.org/661380
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40529 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/plugin_process_host.cc')
-rw-r--r-- | chrome/browser/plugin_process_host.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/plugin_process_host.cc b/chrome/browser/plugin_process_host.cc index 203e843..6250837 100644 --- a/chrome/browser/plugin_process_host.cc +++ b/chrome/browser/plugin_process_host.cc @@ -318,11 +318,12 @@ PluginProcessHost::~PluginProcessHost() { window_index != plugin_fullscreen_windows_set_.end(); window_index++) { if (ChromeThread::CurrentlyOn(ChromeThread::UI)) { - mac_util::ReleaseFullScreen(); + mac_util::ReleaseFullScreen(mac_util::kFullScreenModeHideAll); } else { ChromeThread::PostTask( ChromeThread::UI, FROM_HERE, - NewRunnableFunction(mac_util::ReleaseFullScreen)); + NewRunnableFunction(mac_util::ReleaseFullScreen, + mac_util::kFullScreenModeHideAll)); } } // If the plugin hid the cursor, reset that. |