| 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, readonly) NSArray* retrieveConnectedPeripheralServiceUUIDs; |
| 26 | 27 |
| 27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs | 28 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs |
| 28 options:(NSDictionary*)options; | 29 options:(NSDictionary*)options; |
| 29 | 30 |
| 30 - (void)stopScan; | 31 - (void)stopScan; |
| 31 | 32 |
| 32 - (void)connectPeripheral:(CBPeripheral*)peripheral | 33 - (void)connectPeripheral:(CBPeripheral*)peripheral |
| 33 options:(NSDictionary*)options; | 34 options:(NSDictionary*)options; |
| 34 | 35 |
| 36 // Simulates a peripheral being used by another application. This peripheral |
| 37 // will be returned by -[MockCentralManager |
| 38 // retrieveConnectedPeripheralsWithServices:]. |
| 39 - (void)setConnectedMockPeripheral:(CBPeripheral*)peripheral |
| 40 withServiceUUIDs:(NSSet*)serviceUUIDs; |
| 41 |
| 42 // Reset -[MockCentralManager retrieveConnectedPeripheralServiceUUIDs]. |
| 43 - (void)resetRetrieveConnectedPeripheralServiceUUIDs; |
| 44 |
| 35 @end | 45 @end |
| 36 | 46 |
| 37 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 47 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| OLD | NEW |