Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: chrome/browser/ui/cocoa/browser_window_controller_private.h

Issue 523723002: mac, fullscreen: Several bug fixes after major refactor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new_fullscreen2
Patch Set: Comments from rsesek. (Includes a rebase against the latest fullscreen refactor) Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698