diff options
Diffstat (limited to 'chrome/browser/ui/browser.cc')
-rw-r--r-- | chrome/browser/ui/browser.cc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc index edc857f..53e1589 100644 --- a/chrome/browser/ui/browser.cc +++ b/chrome/browser/ui/browser.cc @@ -2167,12 +2167,9 @@ void Browser::UpdateBookmarkBarState(BookmarkBarStateChangeReason reason) { } bool Browser::ShouldHideUIForFullscreen() const { - // On Mac, fullscreen mode has most normal things (in a slide-down panel). On - // other platforms, we hide some controls when in fullscreen mode. -#if defined(OS_MACOSX) - return false; -#endif - return window_ && window_->IsFullscreen(); + // Windows and GTK remove the top controls in fullscreen, but Mac and Ash + // keep the controls in a slide-down panel. + return window_ && window_->ShouldHideUIForFullscreen(); } bool Browser::MaybeCreateBackgroundContents(int route_id, |