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

Unified Diff: device/bluetooth/bluetooth_adapter_chromeos_experimental.cc

Issue 13224004: Bluetooth: remove private members from BluetoothAdapter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix BluetoothApiTest.Events Created 7 years, 9 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_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;
}

Powered by Google App Engine
This is Rietveld 408576698