Index: device/bluetooth/bluetooth_adapter_chromeos.h |
diff --git a/device/bluetooth/bluetooth_adapter_chromeos.h b/device/bluetooth/bluetooth_adapter_chromeos.h |
index 3e794e3ba21e3493335d7faa9147b8d435179ef4..0c4f9600a0e4669cd6ec6322bcbc022d3207e866 100644 |
--- a/device/bluetooth/bluetooth_adapter_chromeos.h |
+++ b/device/bluetooth/bluetooth_adapter_chromeos.h |
@@ -42,6 +42,8 @@ class BluetoothAdapterChromeOS |
device::BluetoothAdapter::Observer* observer) OVERRIDE; |
virtual void RemoveObserver( |
device::BluetoothAdapter::Observer* observer) OVERRIDE; |
+ virtual std::string address() const OVERRIDE; |
+ virtual std::string name() const OVERRIDE; |
virtual bool IsInitialized() const OVERRIDE; |
virtual bool IsPresent() const OVERRIDE; |
virtual bool IsPowered() const OVERRIDE; |
@@ -214,6 +216,8 @@ class BluetoothAdapterChromeOS |
// Tracked adapter state, cached locally so we only send change notifications |
// to observers on a genuine change. |
+ std::string address_; |
+ std::string name_; |
bool powered_; |
bool discovering_; |