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

Unified Diff: chrome/browser/ui/cocoa/browser_window_controller_private.h

Issue 10825302: mac: Remove more 10.5-only code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tweak comments Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/browser_window_controller_private.h
diff --git a/chrome/browser/ui/cocoa/browser_window_controller_private.h b/chrome/browser/ui/cocoa/browser_window_controller_private.h
index de79ef5e37cc2a9ba8bf659d6d148214f45d8f09..41ce451cedb6209b075140e07bf0b5be92ed0227 100644
--- a/chrome/browser/ui/cocoa/browser_window_controller_private.h
+++ b/chrome/browser/ui/cocoa/browser_window_controller_private.h
@@ -110,13 +110,13 @@
- (BOOL)shouldShowPresentationModeToggle;
// Moves views between windows in preparation for fullscreen mode on Snow
-// Leopard or earlier. (Lion and later reuses the original window for
+// Leopard. (Lion and later reuses the original window for
// fullscreen mode, so there is no need to move views around.) This method does
// not position views; callers must also call |-layoutSubviews|. This method
// must not be called on Lion or later.
-- (void)moveViewsForFullscreenForSnowLeopardOrEarlier:(BOOL)fullscreen
- regularWindow:(NSWindow*)regularWindow
- fullscreenWindow:(NSWindow*)fullscreenWindow;
+- (void)moveViewsForFullscreenForSnowLeopard:(BOOL)fullscreen
+ regularWindow:(NSWindow*)regularWindow
+ fullscreenWindow:(NSWindow*)fullscreenWindow;
// Sets presentation mode, creating the PresentationModeController if needed and
// forcing a relayout. If |forceDropdown| is YES, this method will always
@@ -129,8 +129,8 @@
// Called on Snow Leopard or earlier to enter or exit fullscreen. These methods
// are internal implementations of |-setFullscreen:|. These methods must not be
// called on Lion or later.
-- (void)enterFullscreenForSnowLeopardOrEarlier;
-- (void)exitFullscreenForSnowLeopardOrEarlier;
+- (void)enterFullscreenForSnowLeopard;
+- (void)exitFullscreenForSnowLeopard;
// Register or deregister for content view resize notifications. These
// notifications are used while transitioning to fullscreen mode in Lion or

Powered by Google App Engine
This is Rietveld 408576698