summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/personal_data_manager.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-21 01:07:01 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-21 01:07:01 +0000
commit663bd9e1137dacddb0e44fc1f3b687144f722fe7 (patch)
tree00145dd78a68429313d8aaf96661397750489f72 /chrome/browser/autofill/personal_data_manager.cc
parent734fc97bcd0d885de8739c4d611cedf0e2f4ec4c (diff)
downloadchromium_src-663bd9e1137dacddb0e44fc1f3b687144f722fe7.zip
chromium_src-663bd9e1137dacddb0e44fc1f3b687144f722fe7.tar.gz
chromium_src-663bd9e1137dacddb0e44fc1f3b687144f722fe7.tar.bz2
autofill: Rename all the entries remaining with AutoFill to Autofill.
R=isherman@chromium.org,dhollowa@chromium.org BUG=72758 TEST=existing unit_tests Review URL: http://codereview.chromium.org/6688053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/personal_data_manager.cc')
-rw-r--r--chrome/browser/autofill/personal_data_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc
index 0f26238..6f04182 100644
--- a/chrome/browser/autofill/personal_data_manager.cc
+++ b/chrome/browser/autofill/personal_data_manager.cc
@@ -28,7 +28,7 @@
namespace {
// The minimum number of fields that must contain user data and have known types
-// before AutoFill will attempt to import the data into a profile or a credit
+// before Autofill will attempt to import the data into a profile or a credit
// card.
const int kMinProfileImportSize = 3;
const int kMinCreditCardImportSize = 2;
@@ -600,7 +600,7 @@ bool PersonalDataManager::IsDataLoaded() const {
const std::vector<AutofillProfile*>& PersonalDataManager::profiles() {
// |profile_| is NULL in AutofillManagerTest.
bool auxiliary_profiles_enabled = profile_ ? profile_->GetPrefs()->GetBoolean(
- prefs::kAutoFillAuxiliaryProfilesEnabled) : false;
+ prefs::kAutofillAuxiliaryProfilesEnabled) : false;
if (!auxiliary_profiles_enabled)
return web_profiles();