| 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" |
| 11 | 11 |
| 12 #import <CoreBluetooth/CoreBluetooth.h> | 12 #import <CoreBluetooth/CoreBluetooth.h> |
| 13 | 13 |
| 14 // Class to mock a CBCentralManager. Cannot use a OCMockObject because mocking | 14 // Class to mock a CBCentralManager. Cannot use a OCMockObject because mocking |
| 15 // the 'state' property gives a compiler warning when mock_central_manager is of | 15 // the 'state' property gives a compiler warning when mock_central_manager is of |
| 16 // type id (multiple methods named 'state' found), and a compiler warning when | 16 // type id (multiple methods named 'state' found), and a compiler warning when |
| 17 // mock_central_manager is of type CBCentralManager (CBCentralManager may not | 17 // mock_central_manager is of type CBCentralManager (CBCentralManager may not |
| 18 // respond to 'stub'). | 18 // respond to 'stub'). |
| 19 @interface MockCentralManager : NSObject | 19 @interface MockCentralManager : NSObject |
| 20 | 20 |
| 21 @property(nonatomic, assign) NSInteger scanForPeripheralsCallCount; | 21 @property(nonatomic, assign) NSInteger scanForPeripheralsCallCount; |
| 22 @property(nonatomic, assign) NSInteger stopScanCallCount; | 22 @property(nonatomic, assign) NSInteger stopScanCallCount; |
| 23 @property(nonatomic, assign) id<CBCentralManagerDelegate> delegate; | 23 @property(nonatomic, assign) id<CBCentralManagerDelegate> delegate; |
| 24 @property(nonatomic, assign) CBCentralManagerState state; | 24 @property(nonatomic, assign) CBCentralManagerState state; |
| 25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac; | 25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac; |
| 26 @property(nonatomic, assign) NSArray* connected_peripherals; |
| 27 |
| 28 - (NSArray*)retrieveConnectedPeripheralsWithServices:(NSArray*)serviceUUIDs; |
| 26 | 29 |
| 27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs | 30 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs |
| 28 options:(NSDictionary*)options; | 31 options:(NSDictionary*)options; |
| 29 | 32 |
| 30 - (void)stopScan; | 33 - (void)stopScan; |
| 31 | 34 |
| 32 - (void)connectPeripheral:(CBPeripheral*)peripheral | 35 - (void)connectPeripheral:(CBPeripheral*)peripheral |
| 33 options:(NSDictionary*)options; | 36 options:(NSDictionary*)options; |
| 34 | 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 |