diff options
author | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-09 05:55:19 +0000 |
---|---|---|
committer | mhm@chromium.org <mhm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-09 05:55:19 +0000 |
commit | 9c0b3e3a30ab2246a9385b978e86003d4fc8ceb9 (patch) | |
tree | 28d91c66d9ae2bc71c106b0c77cecbb9e319062d /chrome/browser/views/options/content_page_view.h | |
parent | 9e8bb30aea6eaf682887c8cfe33439f851945ee3 (diff) | |
download | chromium_src-9c0b3e3a30ab2246a9385b978e86003d4fc8ceb9.zip chromium_src-9c0b3e3a30ab2246a9385b978e86003d4fc8ceb9.tar.gz chromium_src-9c0b3e3a30ab2246a9385b978e86003d4fc8ceb9.tar.bz2 |
Implement different radio groups for Options > Personal Stuff
Passwords and Form autofill share the same group, they need to be treated separately. It did not work correctly, when "password" radio option was chosen,two of
"form autofill" radio option both change to blank(not selected). This patch will properly create different radio groups for passwords and autofill.
BUG=13222 (http://crbug.com/13222)
TEST=Radio buttons now function propertly
TBR=ben
Review URL: http://codereview.chromium.org/119347
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17932 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/options/content_page_view.h')
-rw-r--r-- | chrome/browser/views/options/content_page_view.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/options/content_page_view.h b/chrome/browser/views/options/content_page_view.h index e0cabd5..c429407 100644 --- a/chrome/browser/views/options/content_page_view.h +++ b/chrome/browser/views/options/content_page_view.h @@ -73,7 +73,7 @@ class ContentPageView : public OptionsPageView, views::NativeButton* clear_data_button_; BooleanPrefMember ask_to_save_passwords_; - BooleanPrefMember form_autofill_; + BooleanPrefMember ask_to_save_form_autofill_; DISALLOW_COPY_AND_ASSIGN(ContentPageView); }; |