Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Side by Side Diff: base/mac/sdk_forward_declarations.h

Issue 374203004: mac: Add metrics to record Bluetooth availability and capabilities. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from mark, round three. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/mac/bluetooth_utility.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 - (NSString*)nameAsString; 159 - (NSString*)nameAsString;
160 - (BluetoothHCIPowerState)powerState; 160 - (BluetoothHCIPowerState)powerState;
161 @end 161 @end
162 162
163 enum {
164 kBluetoothFeatureLESupportedController = (1 << 6L),
165 };
166
163 @protocol IOBluetoothDeviceInquiryDelegate 167 @protocol IOBluetoothDeviceInquiryDelegate
164 - (void)deviceInquiryStarted:(IOBluetoothDeviceInquiry*)sender; 168 - (void)deviceInquiryStarted:(IOBluetoothDeviceInquiry*)sender;
165 - (void)deviceInquiryDeviceFound:(IOBluetoothDeviceInquiry*)sender 169 - (void)deviceInquiryDeviceFound:(IOBluetoothDeviceInquiry*)sender
166 device:(IOBluetoothDevice*)device; 170 device:(IOBluetoothDevice*)device;
167 - (void)deviceInquiryComplete:(IOBluetoothDeviceInquiry*)sender 171 - (void)deviceInquiryComplete:(IOBluetoothDeviceInquiry*)sender
168 error:(IOReturn)error 172 error:(IOReturn)error
169 aborted:(BOOL)aborted; 173 aborted:(BOOL)aborted;
170 @end 174 @end
171 175
172 @interface IOBluetoothL2CAPChannel (LionSDK) 176 @interface IOBluetoothL2CAPChannel (LionSDK)
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 263
260 @interface NSWindow (YosemiteSDK) 264 @interface NSWindow (YosemiteSDK)
261 265
262 @property NSWindowTitleVisibility titleVisibility; 266 @property NSWindowTitleVisibility titleVisibility;
263 267
264 @end 268 @end
265 269
266 #endif // MAC_OS_X_VERSION_10_10 270 #endif // MAC_OS_X_VERSION_10_10
267 271
268 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ 272 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/mac/bluetooth_utility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698