| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ |
| 7 | 7 |
| 8 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 8 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 9 #import "chrome/browser/ui/cocoa/browser_window_layout.h" | 9 #import "chrome/browser/ui/cocoa/browser_window_layout.h" |
| 10 #import "chrome/browser/ui/cocoa/presentation_mode_controller.h" | 10 #import "chrome/browser/ui/cocoa/presentation_mode_controller.h" |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 // Modal sheets should be hidden at the beginning and then shown at the end. | 190 // Modal sheets should be hidden at the beginning and then shown at the end. |
| 191 - (void)setSheetHiddenForFullscreenTransition:(BOOL)shoudHide; | 191 - (void)setSheetHiddenForFullscreenTransition:(BOOL)shoudHide; |
| 192 | 192 |
| 193 // Adjusts the UI and destroys the exit bubble when we are exiting fullscreen. | 193 // Adjusts the UI and destroys the exit bubble when we are exiting fullscreen. |
| 194 - (void)adjustUIForExitingFullscreen; | 194 - (void)adjustUIForExitingFullscreen; |
| 195 | 195 |
| 196 // Determines the appropriate sliding fullscreen style and adjusts the UI to | 196 // Determines the appropriate sliding fullscreen style and adjusts the UI to |
| 197 // it when we are entering fullscreen. | 197 // it when we are entering fullscreen. |
| 198 - (void)adjustUIForEnteringFullscreen; | 198 - (void)adjustUIForEnteringFullscreen; |
| 199 | 199 |
| 200 // Returns YES if the fullscreen is for tab content. | 200 // Returns YES if the fullscreen is for tab content or an extension. |
| 201 - (BOOL)isFullscreenForTabContent; | 201 - (BOOL)isFullscreenForTabContentOrExtension; |
| 202 | 202 |
| 203 #endif | 203 #endif |
| 204 | 204 |
| 205 @end // @interface BrowserWindowController(Private) | 205 @end // @interface BrowserWindowController(Private) |
| 206 | 206 |
| 207 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ | 207 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ |
| OLD | NEW |