| 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 fb9e21085f91a3d0e8428e490a5d073262045756..ab3fa19d54c09845173cb556670925ea442d35c4 100644
|
| --- a/chrome/browser/ui/cocoa/browser_window_controller_private.mm
|
| +++ b/chrome/browser/ui/cocoa/browser_window_controller_private.mm
|
| @@ -612,6 +612,8 @@
|
| }
|
|
|
| - (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.
|
| @@ -678,6 +680,8 @@
|
| }
|
|
|
| - (void)windowWillExitFullScreen:(NSNotification*)notification {
|
| + [tabStripController_ setVisualEffectsDisabledForFullscreen:NO];
|
| +
|
| if (fullscreenLowPowerCoordinator_)
|
| fullscreenLowPowerCoordinator_->SetInFullscreenTransition(true);
|
|
|
|
|