summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
authorjlebel <jlebel@chromium.org>2016-01-20 18:51:35 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-21 02:52:27 +0000
commit1f7040e372e021417a32efc694fb29f57f6c8cd6 (patch)
treeec4434bbc859403801a4c134694564c2a3d040f6 /device
parent101f96e73dfda176c4b1b3319d15ebbdba227d56 (diff)
downloadchromium_src-1f7040e372e021417a32efc694fb29f57f6c8cd6.zip
chromium_src-1f7040e372e021417a32efc694fb29f57f6c8cd6.tar.gz
chromium_src-1f7040e372e021417a32efc694fb29f57f6c8cd6.tar.bz2
Changing type from BOOL to NSInteger for call counters in MockCentralManager.
Review URL: https://codereview.chromium.org/1606173002 Cr-Commit-Position: refs/heads/master@{#370593}
Diffstat (limited to 'device')
-rw-r--r--device/bluetooth/test/mock_bluetooth_central_manager_mac.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/bluetooth/test/mock_bluetooth_central_manager_mac.h b/device/bluetooth/test/mock_bluetooth_central_manager_mac.h
index 6e60614..535d72d2 100644
--- a/device/bluetooth/test/mock_bluetooth_central_manager_mac.h
+++ b/device/bluetooth/test/mock_bluetooth_central_manager_mac.h
@@ -21,8 +21,8 @@
// respond to 'stub').
@interface MockCentralManager : NSObject
-@property(nonatomic, assign) BOOL scanForPeripheralsCallCount;
-@property(nonatomic, assign) BOOL stopScanCallCount;
+@property(nonatomic, assign) NSInteger scanForPeripheralsCallCount;
+@property(nonatomic, assign) NSInteger stopScanCallCount;
@property(nonatomic, assign) id<CBCentralManagerDelegate> delegate;
@property(nonatomic, assign) CBCentralManagerState state;