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 // This file contains forward declarations for items in later SDKs than the | 5 // This file contains forward declarations for items in later SDKs than the |
6 // default one with which Chromium is built (currently 10.6). | 6 // default one with which Chromium is built (currently 10.6). |
7 // If you call any function from this header, be sure to check at runtime for | 7 // If you call any function from this header, be sure to check at runtime for |
8 // respondsToSelector: before calling these functions (else your code will crash | 8 // respondsToSelector: before calling these functions (else your code will crash |
9 // on older OS X versions that chrome still supports). | 9 // on older OS X versions that chrome still supports). |
10 | 10 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 - (BluetoothHCIRSSIValue)rawRSSI; | 204 - (BluetoothHCIRSSIValue)rawRSSI; |
205 - (NSArray*)services; | 205 - (NSArray*)services; |
206 - (IOReturn)performSDPQuery:(id)target uuids:(NSArray*)uuids; | 206 - (IOReturn)performSDPQuery:(id)target uuids:(NSArray*)uuids; |
207 @end | 207 @end |
208 | 208 |
209 BASE_EXPORT extern "C" NSString* const NSWindowWillEnterFullScreenNotification; | 209 BASE_EXPORT extern "C" NSString* const NSWindowWillEnterFullScreenNotification; |
210 BASE_EXPORT extern "C" NSString* const NSWindowWillExitFullScreenNotification; | 210 BASE_EXPORT extern "C" NSString* const NSWindowWillExitFullScreenNotification; |
211 BASE_EXPORT extern "C" NSString* const NSWindowDidEnterFullScreenNotification; | 211 BASE_EXPORT extern "C" NSString* const NSWindowDidEnterFullScreenNotification; |
212 BASE_EXPORT extern "C" NSString* const NSWindowDidExitFullScreenNotification; | 212 BASE_EXPORT extern "C" NSString* const NSWindowDidExitFullScreenNotification; |
213 | 213 |
214 BASE_EXPORT extern "C" NSString* const | 214 @protocol NSWindowDelegateFullScreenAdditions |
215 NSWindowDidFailToEnterFullScreenNotification; | 215 - (void)windowDidFailToEnterFullScreen:(NSWindow*)window; |
216 | 216 - (void)windowDidFailToExitFullScreen:(NSWindow*)window; |
217 BASE_EXPORT extern "C" NSString* const | 217 @end |
218 NSWindowDidFailToExitFullScreenNotification; | |
219 | 218 |
220 #endif // MAC_OS_X_VERSION_10_7 | 219 #endif // MAC_OS_X_VERSION_10_7 |
221 | 220 |
222 #if !defined(MAC_OS_X_VERSION_10_8) || \ | 221 #if !defined(MAC_OS_X_VERSION_10_8) || \ |
223 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 | 222 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 |
224 | 223 |
225 enum { | 224 enum { |
226 NSEventPhaseMayBegin = 0x1 << 5 | 225 NSEventPhaseMayBegin = 0x1 << 5 |
227 }; | 226 }; |
228 | 227 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 | 329 |
331 @end | 330 @end |
332 | 331 |
333 BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; | 332 BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; |
334 | 333 |
335 BASE_EXPORT extern "C" NSString* const NSAppearanceNameVibrantDark; | 334 BASE_EXPORT extern "C" NSString* const NSAppearanceNameVibrantDark; |
336 | 335 |
337 #endif // MAC_OS_X_VERSION_10_10 | 336 #endif // MAC_OS_X_VERSION_10_10 |
338 | 337 |
339 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 338 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
OLD | NEW |