Chromium Code Reviews| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 173 | 173 |
| 174 @interface IOBluetoothDevice (LionSDK) | 174 @interface IOBluetoothDevice (LionSDK) |
| 175 - (NSString*)addressString; | 175 - (NSString*)addressString; |
| 176 - (unsigned int)classOfDevice; | 176 - (unsigned int)classOfDevice; |
| 177 - (BluetoothConnectionHandle)connectionHandle; | 177 - (BluetoothConnectionHandle)connectionHandle; |
| 178 - (BluetoothHCIRSSIValue)rawRSSI; | 178 - (BluetoothHCIRSSIValue)rawRSSI; |
| 179 - (NSArray*)services; | 179 - (NSArray*)services; |
| 180 - (IOReturn)performSDPQuery:(id)target uuids:(NSArray*)uuids; | 180 - (IOReturn)performSDPQuery:(id)target uuids:(NSArray*)uuids; |
| 181 @end | 181 @end |
| 182 | 182 |
| 183 extern NSString* const NSWindowWillEnterFullScreenNotification; | |
|
Mark Mentovai
2014/06/17 13:30:41
This should be extern "C". Look at where the SDK d
| |
| 184 | |
| 183 #endif // MAC_OS_X_VERSION_10_7 | 185 #endif // MAC_OS_X_VERSION_10_7 |
| 184 | 186 |
| 185 | |
| 186 #if !defined(MAC_OS_X_VERSION_10_8) || \ | 187 #if !defined(MAC_OS_X_VERSION_10_8) || \ |
| 187 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 | 188 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_8 |
| 188 | 189 |
| 189 enum { | 190 enum { |
| 190 NSEventPhaseMayBegin = 0x1 << 5 | 191 NSEventPhaseMayBegin = 0x1 << 5 |
| 191 }; | 192 }; |
| 192 | 193 |
| 193 #endif // MAC_OS_X_VERSION_10_8 | 194 #endif // MAC_OS_X_VERSION_10_8 |
| 194 | 195 |
| 195 | 196 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 256 | 257 |
| 257 @interface NSWindow (YosemiteSDK) | 258 @interface NSWindow (YosemiteSDK) |
| 258 | 259 |
| 259 @property NSWindowTitleVisibility titleVisibility; | 260 @property NSWindowTitleVisibility titleVisibility; |
| 260 | 261 |
| 261 @end | 262 @end |
| 262 | 263 |
| 263 #endif // MAC_OS_X_VERSION_10_10 | 264 #endif // MAC_OS_X_VERSION_10_10 |
| 264 | 265 |
| 265 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 266 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
| OLD | NEW |