diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 12:29:57 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 12:29:57 +0000 |
commit | c87481cd83101d6a2d9aa2809d7728933339ef62 (patch) | |
tree | 9ac1ea71b203f795a27816849b644ef6566f6fe6 /chrome/browser/autofill/personal_data_manager.cc | |
parent | b4cb02ac97ef8889c5bcbe9d78e0472a6c6e46fb (diff) | |
download | chromium_src-c87481cd83101d6a2d9aa2809d7728933339ef62.zip chromium_src-c87481cd83101d6a2d9aa2809d7728933339ef62.tar.gz chromium_src-c87481cd83101d6a2d9aa2809d7728933339ef62.tar.bz2 |
autofill: Rename AutoFillField to AutofillField.
BUG=72758
TEST=existing unit_tests
Review URL: http://codereview.chromium.org/6621008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76910 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/personal_data_manager.cc')
-rw-r--r-- | chrome/browser/autofill/personal_data_manager.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc index 607d5ad..579edd8 100644 --- a/chrome/browser/autofill/personal_data_manager.cc +++ b/chrome/browser/autofill/personal_data_manager.cc @@ -10,14 +10,14 @@ #include "base/logging.h" #include "base/string_number_conversions.h" #include "base/utf_string_conversions.h" -#include "chrome/browser/autofill/autofill_field.h" #include "chrome/browser/autofill/autofill-inl.h" +#include "chrome/browser/autofill/autofill_field.h" #include "chrome/browser/autofill/autofill_metrics.h" #include "chrome/browser/autofill/form_structure.h" #include "chrome/browser/autofill/phone_number.h" +#include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/webdata/web_data_service.h" -#include "chrome/browser/prefs/pref_service.h" #include "chrome/common/pref_names.h" #include "content/browser/browser_thread.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebRegularExpression.h" @@ -181,7 +181,7 @@ bool PersonalDataManager::ImportFormData( for (iter = form_structures.begin(); iter != form_structures.end(); ++iter) { const FormStructure* form = *iter; for (size_t i = 0; i < form->field_count(); ++i) { - const AutoFillField* field = form->field(i); + const AutofillField* field = form->field(i); string16 value = CollapseWhitespace(field->value(), false); // If we don't know the type of the field, or the user hasn't entered any |