| Index: device/bluetooth/bluetooth_adapter_mac.h
|
| diff --git a/device/bluetooth/bluetooth_adapter_mac.h b/device/bluetooth/bluetooth_adapter_mac.h
|
| index 6a4a448f824220cdb99c9a8ee6872646ddb2f8a1..9ae049506225f4a3be1040347df1279a56e73595 100644
|
| --- a/device/bluetooth/bluetooth_adapter_mac.h
|
| +++ b/device/bluetooth/bluetooth_adapter_mac.h
|
| @@ -33,6 +33,8 @@ class BluetoothAdapterMac : public BluetoothAdapter {
|
| // BluetoothAdapter override
|
| virtual void AddObserver(BluetoothAdapter::Observer* observer) OVERRIDE;
|
| virtual void RemoveObserver(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;
|
| @@ -73,6 +75,8 @@ class BluetoothAdapterMac : public BluetoothAdapter {
|
| // |devices| is an array of pointers to paired |IOBluetoothDevice| objects.
|
| void RemoveUnpairedDevices(NSArray* paired_devices);
|
|
|
| + std::string address_;
|
| + std::string name_;
|
| bool powered_;
|
|
|
| scoped_refptr<base::SequencedTaskRunner> ui_task_runner_;
|
|
|