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

Unified Diff: chrome/browser/chromeos/dbus/bluetooth_manager_client.h

Issue 9302027: chrome: bluetooth: hook up the AdapterAdded signal (Closed) Base URL: http://git.chromium.org/git/chromium/src@master
Patch Set: Another attempt to change base url with a tiny change Created 8 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/dbus/bluetooth_manager_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/dbus/bluetooth_manager_client.h
diff --git a/chrome/browser/chromeos/dbus/bluetooth_manager_client.h b/chrome/browser/chromeos/dbus/bluetooth_manager_client.h
index 3c1c8a1477368fca0172eb127c121be1d7600034..126fd59c7ffc7bb8af302f19b6cb412a8f8e98bd 100644
--- a/chrome/browser/chromeos/dbus/bluetooth_manager_client.h
+++ b/chrome/browser/chromeos/dbus/bluetooth_manager_client.h
@@ -26,9 +26,13 @@ class BluetoothManagerClient {
public:
virtual ~Observer() {}
+ // Called when a local bluetooth adapter is added.
+ // |object_path| is the dbus object path of the adapter.
+ virtual void AdapterAdded(const std::string& object_path) {}
+
// Called when a local bluetooth adapter is removed.
- // |adapter| is the dbus object path of the adapter.
- virtual void AdapterRemoved(const std::string& adapter) {}
+ // |object_path| is the dbus object path of the adapter.
+ virtual void AdapterRemoved(const std::string& object_path) {}
// Called when the default local bluetooth adapter changes.
// |adapter| is the dbus object path of the new default adapter.
« no previous file with comments | « no previous file | chrome/browser/chromeos/dbus/bluetooth_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698