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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 - (void)adjustUIForExitingFullscreenAndStopOmniboxSliding; | 160 - (void)adjustUIForExitingFullscreenAndStopOmniboxSliding; |
160 | 161 |
161 // Toggles the AppKit Fullscreen API. By default, doing so enters Canonical | 162 // Toggles the AppKit Fullscreen API. By default, doing so enters Canonical |
162 // Fullscreen. | 163 // Fullscreen. |
163 - (void)enterAppKitFullscreen; | 164 - (void)enterAppKitFullscreen; |
164 - (void)exitAppKitFullscreen; | 165 - (void)exitAppKitFullscreen; |
165 | 166 |
166 @end // @interface BrowserWindowController(Private) | 167 @end // @interface BrowserWindowController(Private) |
167 | 168 |
168 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ | 169 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_PRIVATE_H_ |
OLD | NEW |