Index: chrome/browser/dom_ui/options/advanced_options_handler.h |
diff --git a/chrome/browser/dom_ui/options/advanced_options_handler.h b/chrome/browser/dom_ui/options/advanced_options_handler.h |
index 6b1cb0a00c55a140718f3f51ea46b7fa0693580d..0de52ab0b0ac11503ce86f6a53211c9779aee96c 100644 |
--- a/chrome/browser/dom_ui/options/advanced_options_handler.h |
+++ b/chrome/browser/dom_ui/options/advanced_options_handler.h |
@@ -60,6 +60,11 @@ class AdvancedOptionsHandler |
// one item, the zoom level as a numeric value. |
void HandleDefaultZoomLevel(const ListValue* args); |
+ // Callback for the "defaultFontSizeAction" message. This is called if the |
+ // user changes the default font size. |args| is an array that contains |
+ // one item, the font size as a numeric value. |
+ void HandleDefaultFontSize(const ListValue* args); |
+ |
#if defined(OS_WIN) |
// Callback for the "Check SSL Revocation" checkbox. This is needed so we |
// can support manual handling on Windows. |
@@ -117,6 +122,7 @@ class AdvancedOptionsHandler |
void SetupMetricsReportingSettingVisibility(); |
void SetupDefaultZoomLevel(); |
+ void SetupFontSizeLabel(); |
// Setup the download path based on user preferences. |
void SetupDownloadLocationPath(); |
@@ -143,6 +149,8 @@ class AdvancedOptionsHandler |
FilePathPrefMember default_download_location_; |
StringPrefMember auto_open_files_; |
RealPrefMember default_zoom_level_; |
+ IntegerPrefMember default_font_size_; |
+ IntegerPrefMember default_fixed_font_size_; |
scoped_ptr<PrefSetObserver> proxy_prefs_; |
scoped_ptr<OptionsManagedBannerHandler> banner_handler_; |