diff options
author | ygorshenin@chromium.org <ygorshenin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-30 01:45:10 +0000 |
---|---|---|
committer | ygorshenin@chromium.org <ygorshenin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-30 01:45:10 +0000 |
commit | cb99348010b1e026f4ef4c0d242434731e497dca (patch) | |
tree | f822439fbe9404499fca62a2398bbf90b1378140 /chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc | |
parent | f0d330f393cfda9482d807b584e8868250c21dc3 (diff) | |
download | chromium_src-cb99348010b1e026f4ef4c0d242434731e497dca.zip chromium_src-cb99348010b1e026f4ef4c0d242434731e497dca.tar.gz chromium_src-cb99348010b1e026f4ef4c0d242434731e497dca.tar.bz2 |
Fixed chrome://settings/accounts availability for MP.
BUG=230018
TEST=manual tests on Peppy
Review URL: https://codereview.chromium.org/144983002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247806 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc')
-rw-r--r-- | chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc b/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc index e6f37a0..56eb520 100644 --- a/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc +++ b/chrome/browser/ui/webui/chromeos/proxy_settings_ui.cc @@ -92,12 +92,12 @@ ProxySettingsUI::ProxySettingsUI(content::WebUI* web_ui) // |localized_strings| will be owned by ProxySettingsHTMLSource. base::DictionaryValue* localized_strings = new base::DictionaryValue(); + web_ui->AddMessageHandler(core_handler_); core_handler_->set_handlers_host(this); core_handler_->GetLocalizedValues(localized_strings); - web_ui->AddMessageHandler(core_handler_); - proxy_handler_->GetLocalizedValues(localized_strings); web_ui->AddMessageHandler(proxy_handler_); + proxy_handler_->GetLocalizedValues(localized_strings); bool keyboard_driven_oobe = system::keyboard_settings::ForceKeyboardDrivenUINavigation(); |