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 |