diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-01 00:57:33 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-01 00:57:33 +0000 |
commit | cea1d11b9375368e29906255b7f865f78045200b (patch) | |
tree | b8cde41281263b22a948510933ee5e82c6ffa9b9 /chrome/common | |
parent | e7c3784d1fb8d5f1862409fe62feab2112b70af0 (diff) | |
download | chromium_src-cea1d11b9375368e29906255b7f865f78045200b.zip chromium_src-cea1d11b9375368e29906255b7f865f78045200b.tar.gz chromium_src-cea1d11b9375368e29906255b7f865f78045200b.tar.bz2 |
AutoFill: Aggregate profile data. Remove the AutoFill InfoBar. Remove more remnants of shipping address and CVV.
BUG=47426,47423
TEST=PersonalDataManager.*
Review URL: http://codereview.chromium.org/2818033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51322 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 11 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
2 files changed, 4 insertions, 8 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 3c8cd8d..950cc6f 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -105,7 +105,7 @@ const wchar_t kShowBookmarkBar[] = L"bookmark_bar.show_on_all_tabs"; // passwords and fill in known passwords). const wchar_t kPasswordManagerEnabled[] = L"profile.password_manager_enabled"; -// OBSOLETE. Boolean that is true if the form autofill is on (will record +// OBSOLETE. Boolean that is true if the form AutoFill is on (will record // values entered in text inputs in forms and shows them in a popup when user // type in a text input with the same name later on). This has been superseded // by kAutoFillEnabled. @@ -453,18 +453,15 @@ const wchar_t kClearSiteDataOnExit[] = L"profile.clear_site_data_on_exit"; // be displayed at the default zoom level. const wchar_t kPerHostZoomLevels[] = L"profile.per_host_zoom_levels"; -// Boolean that is true if the autofill infobar has been shown to the user. -const wchar_t kAutoFillInfoBarShown[] = L"autofill.infobar_shown"; - -// Boolean that is true if autofill is enabled and allowed to save profile data. +// Boolean that is true if AutoFill is enabled and allowed to save profile data. const wchar_t kAutoFillEnabled[] = L"autofill.enabled"; -// Boolean that is true when auxiliary autofill profiles are enabled. +// Boolean that is true when auxiliary AutoFill profiles are enabled. // Currently applies to Address Book "me" card on Mac. False on Win and Linux. const wchar_t kAutoFillAuxiliaryProfilesEnabled[] = L"autofill.auxiliary_profiles_enabled"; -// Position and size of the autofill dialog. +// Position and size of the AutoFill dialog. const wchar_t kAutoFillDialogPlacement[] = L"autofill.dialog_placement"; // Double that indicates positive (for matched forms) upload rate. diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 6b0fbb5..1f61de8 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -173,7 +173,6 @@ extern const wchar_t kContentSettingsPatterns[]; extern const wchar_t kBlockThirdPartyCookies[]; extern const wchar_t kClearSiteDataOnExit[]; extern const wchar_t kPerHostZoomLevels[]; -extern const wchar_t kAutoFillInfoBarShown[]; extern const wchar_t kAutoFillEnabled[]; extern const wchar_t kAutoFillAuxiliaryProfilesEnabled[]; extern const wchar_t kAutoFillDialogPlacement[]; |