| 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 | |
| 215 NSWindowDidFailToEnterFullScreenNotification; | |
| 216 | |
| 217 BASE_EXPORT extern "C" NSString* const | |
| 218 NSWindowDidFailToExitFullScreenNotification; | |
| 219 | |
| 220 #endif // MAC_OS_X_VERSION_10_7 | 214 #endif // MAC_OS_X_VERSION_10_7 |
| 221 | 215 |
| 222 #if !defined(MAC_OS_X_VERSION_10_8) || \ | 216 #if !defined(MAC_OS_X_VERSION_10_8) || \ |
| 223 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 | 217 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 |
| 224 | 218 |
| 225 enum { | 219 enum { |
| 226 NSEventPhaseMayBegin = 0x1 << 5 | 220 NSEventPhaseMayBegin = 0x1 << 5 |
| 227 }; | 221 }; |
| 228 | 222 |
| 229 @interface NSColor (MountainLionSDK) | 223 @interface NSColor (MountainLionSDK) |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 | 324 |
| 331 @end | 325 @end |
| 332 | 326 |
| 333 BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; | 327 BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; |
| 334 | 328 |
| 335 BASE_EXPORT extern "C" NSString* const NSAppearanceNameVibrantDark; | 329 BASE_EXPORT extern "C" NSString* const NSAppearanceNameVibrantDark; |
| 336 | 330 |
| 337 #endif // MAC_OS_X_VERSION_10_10 | 331 #endif // MAC_OS_X_VERSION_10_10 |
| 338 | 332 |
| 339 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 333 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
| OLD | NEW |