Index: chrome/browser/chromeos/system/ash_system_tray_delegate.cc |
diff --git a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc |
index 8c2fdb48edddf107bb4c216ba59be1722df9fc50..a7f7ed9c165b910150aa5a51816daa0847a76997 100644 |
--- a/chrome/browser/chromeos/system/ash_system_tray_delegate.cc |
+++ b/chrome/browser/chromeos/system/ash_system_tray_delegate.cc |
@@ -785,13 +785,12 @@ class SystemTrayDelegate : public ash::SystemTrayDelegate, |
ShowNetworkSettings(network_id); |
} |
- virtual void AddBluetoothDevice() OVERRIDE { |
- // Open the Bluetooth device dialog, which automatically starts the |
- // discovery process. |
+ virtual void ManageBluetoothDevices() OVERRIDE { |
content::RecordAction( |
- content::UserMetricsAction("OpenAddBluetoothDeviceDialog")); |
- chrome::ShowSettingsSubPage(GetAppropriateBrowser(), |
- chrome::kBluetoothAddDeviceSubPage); |
+ content::UserMetricsAction("ShowBluetoothSettingsPage")); |
+ std::string sub_page = std::string(chrome::kSearchSubPage) + "#" + |
+ l10n_util::GetStringUTF8(IDS_OPTIONS_SETTINGS_SECTION_TITLE_BLUETOOTH); |
+ chrome::ShowSettingsSubPage(GetAppropriateBrowser(), sub_page); |
} |
virtual void ToggleBluetooth() OVERRIDE { |