autofill: Rename all the entries remaining with AutoFill to Autofill.

[email protected],[email protected]
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
diff --git a/chrome/browser/autofill/phone_number.cc b/chrome/browser/autofill/phone_number.cc
index 43634d8..b06e253 100644
--- a/chrome/browser/autofill/phone_number.cc
+++ b/chrome/browser/autofill/phone_number.cc
@@ -20,7 +20,7 @@
 // The number of digits in an area code.
 const size_t kPhoneCityCodeLength = 3;
 
-const AutofillType::FieldTypeSubGroup kAutoFillPhoneTypes[] = {
+const AutofillType::FieldTypeSubGroup kAutofillPhoneTypes[] = {
   AutofillType::PHONE_NUMBER,
   AutofillType::PHONE_CITY_CODE,
   AutofillType::PHONE_COUNTRY_CODE,
@@ -28,7 +28,7 @@
   AutofillType::PHONE_WHOLE_NUMBER,
 };
 
-const int kAutoFillPhoneLength = arraysize(kAutoFillPhoneTypes);
+const int kAutofillPhoneLength = arraysize(kAutofillPhoneTypes);
 
 }  // namespace
 
@@ -126,8 +126,8 @@
 
   string16 match;
   if (type == UNKNOWN_TYPE) {
-    for (int i = 0; i < kAutoFillPhoneLength; ++i) {
-      if (FindInfoMatchesHelper(kAutoFillPhoneTypes[i], info, &match))
+    for (int i = 0; i < kAutofillPhoneLength; ++i) {
+      if (FindInfoMatchesHelper(kAutofillPhoneTypes[i], info, &match))
         matched_text->push_back(match);
     }
   } else {