| Index: chrome/browser/ui/cocoa/browser_window_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/browser_window_controller.h b/chrome/browser/ui/cocoa/browser_window_controller.h
|
| index 97a4bd0b4005dbf01dc8ea2283b3b8fa4c94b943..60beb8bcc3ce0788c87027ba0c966be22e466781 100644
|
| --- a/chrome/browser/ui/cocoa/browser_window_controller.h
|
| +++ b/chrome/browser/ui/cocoa/browser_window_controller.h
|
| @@ -31,7 +31,7 @@
|
| class Browser;
|
| class BrowserWindow;
|
| class BrowserWindowCocoa;
|
| -@class BrowserWindowEnterFullscreenTransition;
|
| +@class BrowserWindowFullscreenTransition;
|
| @class DevToolsController;
|
| @class DownloadShelfController;
|
| class ExtensionKeybindingRegistryCocoa;
|
| @@ -82,8 +82,8 @@ class Command;
|
| base::scoped_nsobject<PresentationModeController> presentationModeController_;
|
| base::scoped_nsobject<ExclusiveAccessBubbleWindowController>
|
| exclusiveAccessBubbleWindowController_;
|
| - base::scoped_nsobject<BrowserWindowEnterFullscreenTransition>
|
| - enterFullscreenTransition_;
|
| + base::scoped_nsobject<BrowserWindowFullscreenTransition>
|
| + fullscreenTransition_;
|
|
|
| // Strong. StatusBubble is a special case of a strong reference that
|
| // we don't wrap in a scoped_ptr because it is acting the same
|
| @@ -132,6 +132,11 @@ class Command;
|
| // AppKit fullscreen mode.
|
| BOOL enteringAppKitFullscreen_;
|
|
|
| + // True between |-windowWillExitFullScreen:| and |-windowDidExitFullScreen:|
|
| + // to indicate that the window is in the process of transitioning out of
|
| + // AppKit fullscreen mode.
|
| + BOOL exitingAppKitFullscreen_;
|
| +
|
| // True between |enterImmersiveFullscreen| and |-windowDidEnterFullScreen:|
|
| // to indicate that the window is in the process of transitioning into
|
| // AppKit fullscreen mode.
|
|
|