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/presentation_mode_controller.h" |
9 | 10 |
10 // Private methods for the |BrowserWindowController|. This category should | 11 // Private methods for the |BrowserWindowController|. This category should |
11 // contain the private methods used by different parts of the BWC; private | 12 // contain the private methods used by different parts of the BWC; private |
12 // methods used only by single parts should be declared in their own file. | 13 // methods used only by single parts should be declared in their own file. |
13 // TODO(viettrungluu): [crbug.com/35543] work on splitting out stuff from the | 14 // TODO(viettrungluu): [crbug.com/35543] work on splitting out stuff from the |
14 // BWC, and figuring out which methods belong here (need to unravel | 15 // BWC, and figuring out which methods belong here (need to unravel |
15 // "dependencies"). | 16 // "dependencies"). |
16 @interface BrowserWindowController(Private) | 17 @interface BrowserWindowController(Private) |
17 | 18 |
18 // Create the appropriate tab strip controller based on whether or not side | 19 // Create the appropriate tab strip controller based on whether or not side |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 - (void)adjustUIForExitingFullscreenAndStopOmniboxSliding; | 157 - (void)adjustUIForExitingFullscreenAndStopOmniboxSliding; |
157 | 158 |
158 // Toggles the AppKit Fullscreen API. By default, doing so enters Canonical | 159 // Toggles the AppKit Fullscreen API. By default, doing so enters Canonical |
159 // Fullscreen. | 160 // Fullscreen. |
160 - (void)enterAppKitFullscreen; | 161 - (void)enterAppKitFullscreen; |
161 - (void)exitAppKitFullscreen; | 162 - (void)exitAppKitFullscreen; |
162 | 163 |
163 @end // @interface BrowserWindowController(Private) | 164 @end // @interface BrowserWindowController(Private) |
164 | 165 |
165 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ | 166 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ |
OLD | NEW |