Chromium Code Reviews| Index: device/bluetooth/bluetooth_adapter_chromeos_experimental.cc |
| diff --git a/device/bluetooth/bluetooth_adapter_chromeos_experimental.cc b/device/bluetooth/bluetooth_adapter_chromeos_experimental.cc |
| index 4a09e565eec78c4b45a0f2e2413f12823cb9b24f..2ae89910b283627c6b2a7389e9d17050b672b059 100644 |
| --- a/device/bluetooth/bluetooth_adapter_chromeos_experimental.cc |
| +++ b/device/bluetooth/bluetooth_adapter_chromeos_experimental.cc |
| @@ -26,6 +26,14 @@ void BluetoothAdapterChromeOSExperimental::RemoveObserver( |
| BluetoothAdapter::Observer* observer) { |
| } |
| +std::string BluetoothAdapterChromeOSExperimental::address() const { |
| + return ""; |
|
Mark Mentovai
2013/04/02 18:05:27
return std::string();
Same on line 30.
See https
keybuk
2013/04/02 19:03:09
Done.
|
| +} |
| + |
| +std::string BluetoothAdapterChromeOSExperimental::name() const { |
| + return ""; |
| +} |
| + |
| bool BluetoothAdapterChromeOSExperimental::IsInitialized() const { |
| return true; |
| } |