summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/options/content_page_gtk.h
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-23 03:00:37 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-23 03:00:37 +0000
commit1961e77be011903324a97da5354d267b0fae1904 (patch)
treed98aeeb60397c8dbd50cebe7ed4a4a1e96aad2b0 /chrome/browser/gtk/options/content_page_gtk.h
parent5f2f81b706c2e33ac94a09cada59fa29141aff94 (diff)
downloadchromium_src-1961e77be011903324a97da5354d267b0fae1904.zip
chromium_src-1961e77be011903324a97da5354d267b0fae1904.tar.gz
chromium_src-1961e77be011903324a97da5354d267b0fae1904.tar.bz2
gtk: Tie the AutoFill button in the options dialog to the kEnableAutoFill pref.
BUG=38681 TEST=none Review URL: http://codereview.chromium.org/1124005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42304 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/options/content_page_gtk.h')
-rw-r--r--chrome/browser/gtk/options/content_page_gtk.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/gtk/options/content_page_gtk.h b/chrome/browser/gtk/options/content_page_gtk.h
index 5f328d3..d9d7fa5 100644
--- a/chrome/browser/gtk/options/content_page_gtk.h
+++ b/chrome/browser/gtk/options/content_page_gtk.h
@@ -48,7 +48,7 @@ class ContentPageGtk : public OptionsPageBase,
// Initialize the option group widgets, return their container.
GtkWidget* InitPasswordSavingGroup();
- GtkWidget* InitFormAutofillGroup();
+ GtkWidget* InitFormAutoFillGroup();
GtkWidget* InitBrowsingDataGroup();
GtkWidget* InitThemesGroup();
GtkWidget* InitSyncGroup();
@@ -60,8 +60,8 @@ class ContentPageGtk : public OptionsPageBase,
CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnSystemTitleBarRadioToggled);
CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnShowPasswordsButtonClicked);
CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnPasswordRadioToggled);
- CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnAutofillButtonClicked);
- CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnAutofillRadioToggled);
+ CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnAutoFillButtonClicked);
+ CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnAutoFillRadioToggled);
CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnSyncStartStopButtonClicked);
CHROMEGTK_CALLBACK_0(ContentPageGtk, void, OnSyncActionLinkClicked);
CHROMEGTK_CALLBACK_1(ContentPageGtk, void, OnStopSyncDialogResponse, int);
@@ -70,9 +70,10 @@ class ContentPageGtk : public OptionsPageBase,
GtkWidget* passwords_asktosave_radio_;
GtkWidget* passwords_neversave_radio_;
- // Widgets for the Form Autofill group.
+ // Widgets for the Form AutoFill group.
GtkWidget* form_autofill_enable_radio_;
GtkWidget* form_autofill_disable_radio_;
+ GtkWidget* autofill_button_;
// Widgets for the Appearance group.
GtkWidget* system_title_bar_show_radio_;