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

Unified Diff: device/bluetooth/bluetooth_adapter_chromeos.cc

Issue 13224004: Bluetooth: remove private members from BluetoothAdapter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments 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.cc
diff --git a/device/bluetooth/bluetooth_adapter_chromeos.cc b/device/bluetooth/bluetooth_adapter_chromeos.cc
index 26c91e281c16b07babb6bec7d9bb0701191260ea..6ba63439290b0d8ad8dbf7c6f0e83957a1f48cc2 100644
--- a/device/bluetooth/bluetooth_adapter_chromeos.cc
+++ b/device/bluetooth/bluetooth_adapter_chromeos.cc
@@ -65,6 +65,14 @@ void BluetoothAdapterChromeOS::RemoveObserver(
observers_.RemoveObserver(observer);
}
+std::string BluetoothAdapterChromeOS::address() const {
+ return address_;
+}
+
+std::string BluetoothAdapterChromeOS::name() const {
+ return name_;
+}
+
// TODO(youngki) Return true when object path and properties of the adapter are
// initialized.
bool BluetoothAdapterChromeOS::IsInitialized() const {
« no previous file with comments | « device/bluetooth/bluetooth_adapter_chromeos.h ('k') | device/bluetooth/bluetooth_adapter_chromeos_experimental.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698