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

Unified Diff: device/bluetooth/bluetooth_adapter_win.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_win.cc
diff --git a/device/bluetooth/bluetooth_adapter_win.cc b/device/bluetooth/bluetooth_adapter_win.cc
index 4b0f5327ce123769a8350d9e8df29ef107ebdb6d..28d3dcc51bb6e3e11194f017fe7bb48bbfb4cb31 100644
--- a/device/bluetooth/bluetooth_adapter_win.cc
+++ b/device/bluetooth/bluetooth_adapter_win.cc
@@ -45,6 +45,14 @@ void BluetoothAdapterWin::RemoveObserver(BluetoothAdapter::Observer* observer) {
observers_.RemoveObserver(observer);
}
+std::string BluetoothAdapterWin::address() const {
+ return address_;
+}
+
+std::string BluetoothAdapterWin::name() const {
+ return name_;
+}
+
// TODO(youngki): Return true when |task_manager_| initializes the adapter
// state.
bool BluetoothAdapterWin::IsInitialized() const {

Powered by Google App Engine
This is Rietveld 408576698