| 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)addConnectedMockPeripheral:(MockCBPeripheral*)peripheral; |
| 36 |
| 35 @end | 37 @end |
| 36 | 38 |
| 37 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 39 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| OLD | NEW |