OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_COCOA_FULLSCREEN_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_FULLSCREEN_CONTROLLER_H_ |
6 #define CHROME_BROWSER_COCOA_FULLSCREEN_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_FULLSCREEN_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 | 10 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 // Gets the current floating bar shown fraction. | 109 // Gets the current floating bar shown fraction. |
110 - (CGFloat)floatingBarShownFraction; | 110 - (CGFloat)floatingBarShownFraction; |
111 | 111 |
112 // Sets a new current floating bar shown fraction. NOTE: This function has side | 112 // Sets a new current floating bar shown fraction. NOTE: This function has side |
113 // effects, such as modifying the fullscreen mode (menu bar shown state). | 113 // effects, such as modifying the fullscreen mode (menu bar shown state). |
114 - (void)changeFloatingBarShownFraction:(CGFloat)fraction; | 114 - (void)changeFloatingBarShownFraction:(CGFloat)fraction; |
115 | 115 |
116 @end | 116 @end |
117 | 117 |
118 // Notification posted when we're about to enter or leave fullscreen. | 118 // Notification posted when we're about to enter or leave fullscreen. |
119 extern const NSString* kWillEnterFullscreenNotification; | 119 extern NSString* const kWillEnterFullscreenNotification; |
120 extern const NSString* kWillLeaveFullscreenNotification; | 120 extern NSString* const kWillLeaveFullscreenNotification; |
121 | 121 |
122 #endif // CHROME_BROWSER_COCOA_FULLSCREEN_CONTROLLER_H_ | 122 #endif // CHROME_BROWSER_COCOA_FULLSCREEN_CONTROLLER_H_ |
OLD | NEW |