summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc')
-rw-r--r--chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
index a6b68f6..310519f 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
@@ -184,8 +184,8 @@ void BluetoothOptionsHandler::SendDeviceNotification(
base::DictionaryValue js_properties;
js_properties.SetString("name", device->GetName());
js_properties.SetString("address", device->address());
- js_properties.SetBoolean("discovered", device->WasDiscovered());
js_properties.SetBoolean("paired", device->IsPaired());
+ js_properties.SetBoolean("bonded", device->IsBonded());
js_properties.SetBoolean("connected", device->IsConnected());
if (params) {
js_properties.MergeDictionary(params);