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

Unified Diff: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h

Issue 180163009: chrome.bluetooth API improvements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address code review feedback, simplify threading model. Created 6 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: chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h
diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h
index 0c4ae95b771ed4fe055c6b6e49aded68a09e1284..7debed136c739a0319a057979a47c1b835f87faa 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.h
@@ -180,11 +180,13 @@ class BluetoothOptionsHandler
// Called by device::BluetoothDevice in response to a failure to
// disconnect the device with bluetooth address |address|.
- void DisconnectError(const std::string& address);
+ void DisconnectError(const std::string& address,
+ const std::string& error_message);
// Called by device::BluetoothDevice in response to a failure to
// disconnect and unpair the device with bluetooth address |address|.
- void ForgetError(const std::string& address);
+ void ForgetError(const std::string& address,
+ const std::string& error_message);
keybuk 2014/03/27 20:20:07 Forget doesn't have an error_message parameter
rpaquay 2014/03/27 22:00:01 Done.
// Called when the 'Enable bluetooth' checkbox value is changed.
// |args| will contain the checkbox checked state as a string

Powered by Google App Engine
This is Rietveld 408576698