| 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 | 9 |
| 10 #if defined(OS_IOS) | 10 #if defined(OS_IOS) |
| 11 #import <CoreBluetooth/CoreBluetooth.h> | 11 #import <CoreBluetooth/CoreBluetooth.h> |
| 12 #else | 12 #else |
| 13 #import <IOBluetooth/IOBluetooth.h> | 13 #import <IOBluetooth/IOBluetooth.h> |
| 14 #endif | 14 #endif |
| 15 | 15 |
| 16 // Class to mock a CBCentralManager. Cannot use a OCMockObject because mocking | 16 // Class to mock a CBCentralManager. Cannot use a OCMockObject because mocking |
| 17 // the 'state' property gives a compiler warning when mock_central_manager is of | 17 // the 'state' property gives a compiler warning when mock_central_manager is of |
| 18 // type id (multiple methods named 'state' found), and a compiler warning when | 18 // type id (multiple methods named 'state' found), and a compiler warning when |
| 19 // mock_central_manager is of type CBCentralManager (CBCentralManager may not | 19 // mock_central_manager is of type CBCentralManager (CBCentralManager may not |
| 20 // respond to 'stub'). | 20 // respond to 'stub'). |
| 21 @interface MockCentralManager : NSObject | 21 @interface MockCentralManager : NSObject |
| 22 | 22 |
| 23 @property(nonatomic, assign) BOOL scanForPeripheralsCallCount; | 23 @property(nonatomic, assign) BOOL scanForPeripheralsCallCount; |
| 24 @property(nonatomic, assign) BOOL stopScanCallCount; | 24 @property(nonatomic, assign) BOOL stopScanCallCount; |
| 25 @property(nonatomic, assign) id<CBCentralManagerDelegate> delegate; | 25 @property(nonatomic, assign) id<CBCentralManagerDelegate> delegate; |
| 26 @property(nonatomic, assign) CBCentralManagerState state; |
| 26 | 27 |
| 27 // Designated initializer | 28 // Designated initializer |
| 28 - (instancetype)init; | 29 - (instancetype)init; |
| 29 | 30 |
| 30 - (instancetype)initWithDelegate:(id<CBCentralManagerDelegate>)delegate | 31 - (instancetype)initWithDelegate:(id<CBCentralManagerDelegate>)delegate |
| 31 queue:(dispatch_queue_t)queue | 32 queue:(dispatch_queue_t)queue |
| 32 options:(NSDictionary*)options; | 33 options:(NSDictionary*)options; |
| 33 | 34 |
| 34 - (CBCentralManagerState)state; | |
| 35 | |
| 36 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs | 35 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs |
| 37 options:(NSDictionary*)options; | 36 options:(NSDictionary*)options; |
| 38 | 37 |
| 39 - (void)stopScan; | 38 - (void)stopScan; |
| 40 | 39 |
| 41 @end | 40 @end |
| 42 | 41 |
| 43 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ | 42 #endif // DEVICE_BLUETOOTH_MOCK_BLUETOOTH_CENTRAL_MANAGER_MAC_H_ |
| OLD | NEW |