| 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() {}
|
|
|