Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: device/bluetooth/test/mock_bluetooth_central_manager_mac.h

Issue 2339253002: bluetooth: mac: add connected LE devices to chooser (Closed)
Patch Set: Implementing RetrieveGattConnectedDevicesWithDiscoveryFilter() with tests Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
(...skipping 14 matching lines...) Expand all
25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac; 25 @property(nonatomic, assign) device::BluetoothTestMac* bluetoothTestMac;
26 26
27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs 27 - (void)scanForPeripheralsWithServices:(NSArray*)serviceUUIDs
28 options:(NSDictionary*)options; 28 options:(NSDictionary*)options;
29 29
30 - (void)stopScan; 30 - (void)stopScan;
31 31
32 - (void)connectPeripheral:(CBPeripheral*)peripheral 32 - (void)connectPeripheral:(CBPeripheral*)peripheral
33 options:(NSDictionary*)options; 33 options:(NSDictionary*)options;
34 34
35 - (void)setConnectedMockPeripheral:(CBPeripheral*)peripheral
ortuno 2016/10/31 04:30:51 Comment please.
jlebel 2016/11/07 01:43:18 Done.
36 withServiceUUIDs:(NSSet*)serviceUUIDs;
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698