| Index: chrome/browser/ui/cocoa/browser_window_controller_private.mm
|
| diff --git a/chrome/browser/ui/cocoa/browser_window_controller_private.mm b/chrome/browser/ui/cocoa/browser_window_controller_private.mm
|
| index 996e3d6b3ce3110895a4ad4dbf89adf27122978f..883c3b3097c0eefa53a81e42e9e917bfa3e23cb2 100644
|
| --- a/chrome/browser/ui/cocoa/browser_window_controller_private.mm
|
| +++ b/chrome/browser/ui/cocoa/browser_window_controller_private.mm
|
| @@ -705,6 +705,8 @@ - (void)windowWillEnterFullScreen:(NSNotification*)notification {
|
| }
|
|
|
| - (void)windowDidEnterFullScreen:(NSNotification*)notification {
|
| + [tabStripController_ setVisualEffectsDisabledForFullscreen:YES];
|
| +
|
| // In Yosemite, some combination of the titlebar and toolbar always show in
|
| // full-screen mode. We do not want either to show. Search for the window that
|
| // contains the views, and hide it. There is no need to ever unhide the view.
|
| @@ -772,6 +774,8 @@ - (void)windowDidEnterFullScreen:(NSNotification*)notification {
|
| }
|
|
|
| - (void)windowWillExitFullScreen:(NSNotification*)notification {
|
| + [tabStripController_ setVisualEffectsDisabledForFullscreen:NO];
|
| +
|
| if (fullscreenLowPowerCoordinator_)
|
| fullscreenLowPowerCoordinator_->SetInFullscreenTransition(true);
|
|
|
|
|