Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Unified Diff: chrome/browser/ui/webui/options/advanced_options_handler.h

Issue 8528011: Page zoom improvements (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: One last(?) tweak. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/advanced_options_handler.h
===================================================================
--- chrome/browser/ui/webui/options/advanced_options_handler.h (revision 110998)
+++ chrome/browser/ui/webui/options/advanced_options_handler.h (working copy)
@@ -48,23 +48,28 @@
virtual void OnCloudPrintSetupClosed() OVERRIDE;
private:
- // Callback for the "selectDownloadLocation" message. This will prompt
- // the user for a destination folder using platform-specific APIs.
+ // Callback for the "selectDownloadLocation" message. This will prompt the
+ // user for a destination folder using platform-specific APIs.
void HandleSelectDownloadLocation(const ListValue* args);
- // Callback for the "autoOpenFileTypesResetToDefault" message. This will
+ // Callback for the "autoOpenFileTypesResetToDefault" message. This will
// remove all auto-open file-type settings.
void HandleAutoOpenButton(const ListValue* args);
- // Callback for the "metricsReportingCheckboxAction" message. This is called
+ // Callback for the "metricsReportingCheckboxAction" message. This is called
// if the user toggles the metrics reporting checkbox.
void HandleMetricsReportingCheckbox(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
+ // 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);
+ // Callback for the "defaultZoomFactorAction" message. This is called if the
+ // user changes the default zoom factor. |args| is an array that contains
+ // one item, the zoom factor as a numeric value.
+ void HandleDefaultZoomFactor(const ListValue* args);
+
// Callback for the "Check for server certificate revocation" checkbox. This
// is called if the user toggles the "Check for server certificate revocation"
// checkbox.
@@ -90,16 +95,16 @@
void ShowManageSSLCertificates(const ListValue* args);
#endif
- // Callback for the Cloud Print manage button. This will open a new
+ // Callback for the Cloud Print manage button. This will open a new
// tab pointed at the management URL.
void ShowCloudPrintManagePage(const ListValue* args);
#if !defined(OS_CHROMEOS)
- // Callback for the Sign in to Cloud Print button. This will start
+ // Callback for the Sign in to Cloud Print button. This will start
// the authentication process.
void ShowCloudPrintSetupDialog(const ListValue* args);
- // Callback for the Disable Cloud Print button. This will sign out
+ // Callback for the Disable Cloud Print button. This will sign out
// of cloud print.
void HandleDisableCloudPrintProxy(const ListValue* args);
@@ -131,8 +136,12 @@
// Setup the visibility for the metrics reporting setting.
void SetupMetricsReportingSettingVisibility();
- void SetupFontSizeLabel();
+ // Setup the font size selector control.
+ void SetupFontSizeSelector();
+ // Setup the page zoom selector control.
+ void SetupPageZoomSelector();
+
// Setup the enabled state of the reset button.
void SetupAutoOpenFileTypesDisabledAttribute();
@@ -161,6 +170,7 @@
StringPrefMember auto_open_files_;
IntegerPrefMember default_font_size_;
+ DoublePrefMember default_zoom_level_;
#if !defined(OS_CHROMEOS)
scoped_ptr<PrefSetObserver> proxy_prefs_;

Powered by Google App Engine
This is Rietveld 408576698