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

Unified Diff: device/bluetooth/bluetooth_discovery_manager_mac.h

Issue 1165053003: Adding support for Low Energy device discovery to BluetoothAdapterMac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment fixes Created 5 years, 6 months 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 side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluetooth_discovery_manager_mac.h
diff --git a/device/bluetooth/bluetooth_discovery_manager_mac.h b/device/bluetooth/bluetooth_discovery_manager_mac.h
index f6a003c7bd35279b65ac39bc721e7731a3ce6b80..f2fb9a9b227e98f7a3a77ce703f185581b7ddb8e 100644
--- a/device/bluetooth/bluetooth_discovery_manager_mac.h
+++ b/device/bluetooth/bluetooth_discovery_manager_mac.h
@@ -21,13 +21,13 @@ class BluetoothDiscoveryManagerMac {
public:
// Called when |this| manager has found a device through classic device
// inquiry in the form of an IOBluetoothDevice.
- virtual void DeviceFound(IOBluetoothDevice* device) = 0;
+ virtual void ClassicDeviceFound(IOBluetoothDevice* device) = 0;
// Called when device discovery is no longer running, due to either a call
// to BluetoothDiscoveryManagerMac::StopDiscovery or an unexpected reason,
// such as when a user disables the controller, in which case the value of
// |unexpected| will be true.
- virtual void DiscoveryStopped(bool unexpected) = 0;
+ virtual void ClassicDiscoveryStopped(bool unexpected) = 0;
protected:
virtual ~Observer() {}
« no previous file with comments | « device/bluetooth/bluetooth_adapter_mac_unittest.mm ('k') | device/bluetooth/bluetooth_discovery_manager_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698