| 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 | 11 |
| 11 #if defined(OS_IOS) | |
| 12 #import <CoreBluetooth/CoreBluetooth.h> | 12 #import <CoreBluetooth/CoreBluetooth.h> |
| 13 #else | |
| 14 #import <IOBluetooth/IOBluetooth.h> | |
| 15 #endif | |
| 16 | 13 |
| 17 // Class to mock a CBCentralManager. Cannot use a OCMockObject because mocking | 14 // Class to mock a CBCentralManager. Cannot use a OCMockObject because mocking |
| 18 // 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 |
| 19 // 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 |
| 20 // mock_central_manager is of type CBCentralManager (CBCentralManager may not | 17 // mock_central_manager is of type CBCentralManager (CBCentralManager may not |
| 21 // respond to 'stub'). | 18 // respond to 'stub'). |
| 22 @interface MockCentralManager : NSObject | 19 @interface MockCentralManager : NSObject |
| 23 | 20 |
| 24 @property(nonatomic, assign) NSInteger scanForPeripheralsCallCount; | 21 @property(nonatomic, assign) NSInteger scanForPeripheralsCallCount; |
| 25 @property(nonatomic, assign) NSInteger stopScanCallCount; | 22 @property(nonatomic, assign) NSInteger stopScanCallCount; |
| 26 @property(nonatomic, assign) id<CBCentralManagerDelegate> delegate; | 23 @property(nonatomic, assign) id<CBCentralManagerDelegate> delegate; |
| 27 @property(nonatomic, assign) CBCentralManagerState state; | 24 @property(nonatomic, assign) CBCentralManagerState state; |
| 25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac; |
| 28 | 26 |
| 29 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs | 27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs |
| 30 options:(NSDictionary*)options; | 28 options:(NSDictionary*)options; |
| 31 | 29 |
| 32 - (void)stopScan; | 30 - (void)stopScan; |
| 33 | 31 |
| 32 - (void)connectPeripheral:(CBPeripheral*)peripheral |
| 33 options:(NSDictionary*)options; |
| 34 |
| 34 @end | 35 @end |
| 35 | 36 |
| 36 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 37 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| OLD | NEW |