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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
149 | 149 |
150 @interface CWChannel : NSObject | 150 @interface CWChannel : NSObject |
151 @property(readonly) CWChannelBand channelBand; | 151 @property(readonly) CWChannelBand channelBand; |
152 @end | 152 @end |
153 | 153 |
154 @interface CWNetwork (LionSDK) | 154 @interface CWNetwork (LionSDK) |
155 @property(readonly) CWChannel* wlanChannel; | 155 @property(readonly) CWChannel* wlanChannel; |
156 @end | 156 @end |
157 | 157 |
158 @interface IOBluetoothHostController (LionSDK) | 158 @interface IOBluetoothHostController (LionSDK) |
159 enum { | |
Mark Mentovai
2014/07/11 22:26:29
This does not belong in an @interface.
erikchen
2014/07/11 22:39:58
Done.
| |
160 kBluetoothFeatureLESupportedController = (1 << 6L), | |
161 }; | |
159 - (NSString*)nameAsString; | 162 - (NSString*)nameAsString; |
160 - (BluetoothHCIPowerState)powerState; | 163 - (BluetoothHCIPowerState)powerState; |
161 @end | 164 @end |
162 | 165 |
163 @protocol IOBluetoothDeviceInquiryDelegate | 166 @protocol IOBluetoothDeviceInquiryDelegate |
164 - (void)deviceInquiryStarted:(IOBluetoothDeviceInquiry*)sender; | 167 - (void)deviceInquiryStarted:(IOBluetoothDeviceInquiry*)sender; |
165 - (void)deviceInquiryDeviceFound:(IOBluetoothDeviceInquiry*)sender | 168 - (void)deviceInquiryDeviceFound:(IOBluetoothDeviceInquiry*)sender |
166 device:(IOBluetoothDevice*)device; | 169 device:(IOBluetoothDevice*)device; |
167 - (void)deviceInquiryComplete:(IOBluetoothDeviceInquiry*)sender | 170 - (void)deviceInquiryComplete:(IOBluetoothDeviceInquiry*)sender |
168 error:(IOReturn)error | 171 error:(IOReturn)error |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
259 | 262 |
260 @interface NSWindow (YosemiteSDK) | 263 @interface NSWindow (YosemiteSDK) |
261 | 264 |
262 @property NSWindowTitleVisibility titleVisibility; | 265 @property NSWindowTitleVisibility titleVisibility; |
263 | 266 |
264 @end | 267 @end |
265 | 268 |
266 #endif // MAC_OS_X_VERSION_10_10 | 269 #endif // MAC_OS_X_VERSION_10_10 |
267 | 270 |
268 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 271 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
OLD | NEW |