| Index: chrome/browser/ui/webui/options/advanced_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/advanced_options_handler.cc b/chrome/browser/ui/webui/options/advanced_options_handler.cc
|
| index 5e5f330205755590b0c87bd25c2706cfb945bb13..c443a18885beaf769487658bb95a57a13f52c6a6 100644
|
| --- a/chrome/browser/ui/webui/options/advanced_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/advanced_options_handler.cc
|
| @@ -270,7 +270,7 @@ WebUIMessageHandler* AdvancedOptionsHandler::Attach(WebUI* web_ui) {
|
| #endif
|
|
|
| auto_open_files_.Init(prefs::kDownloadExtensionsToOpen, prefs, this);
|
| - default_font_size_.Init(prefs::kWebKitDefaultFontSize, prefs, this);
|
| + default_font_size_.Init(prefs::kWebKitGlobalDefaultFontSize, prefs, this);
|
| default_zoom_level_.Init(prefs::kDefaultZoomLevel, prefs, this);
|
| #if !defined(OS_CHROMEOS)
|
| proxy_prefs_.reset(
|
| @@ -350,7 +350,7 @@ void AdvancedOptionsHandler::Observe(
|
| if (cloud_print_connector_ui_enabled_)
|
| SetupCloudPrintConnectorSection();
|
| #endif
|
| - } else if (*pref_name == prefs::kWebKitDefaultFontSize) {
|
| + } else if (*pref_name == prefs::kWebKitGlobalDefaultFontSize) {
|
| SetupFontSizeSelector();
|
| } else if (*pref_name == prefs::kDefaultZoomLevel) {
|
| SetupPageZoomSelector();
|
|
|