Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 5 #ifndef DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| 6 #define DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 6 #define DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| 7 | 7 |
| 8 #include "base/mac/sdk_forward_declarations.h" | 8 #include "base/mac/sdk_forward_declarations.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "device/bluetooth/test/bluetooth_test_mac.h" | 10 #include "device/bluetooth/test/bluetooth_test_mac.h" |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac; | 25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac; |
| 26 | 26 |
| 27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs | 27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs |
| 28 options:(NSDictionary*)options; | 28 options:(NSDictionary*)options; |
| 29 | 29 |
| 30 - (void)stopScan; | 30 - (void)stopScan; |
| 31 | 31 |
| 32 - (void)connectPeripheral:(CBPeripheral*)peripheral | 32 - (void)connectPeripheral:(CBPeripheral*)peripheral |
| 33 options:(NSDictionary*)options; | 33 options:(NSDictionary*)options; |
| 34 | 34 |
| 35 - (void)setConnectedMockPeripheral:(CBPeripheral*)peripheral | |
|
ortuno
2016/10/31 04:30:51
Comment please.
jlebel
2016/11/07 01:43:18
Done.
| |
| 36 withServiceUUIDs:(NSSet*)serviceUUIDs; | |
| 37 | |
| 35 @end | 38 @end |
| 36 | 39 |
| 37 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 40 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| OLD | NEW |