summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/contact_info.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-07 16:16:03 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-07 16:16:03 +0000
commit7b37fbb72d90091c6d39be97037e9b089ca0f635 (patch)
tree6f86b054efd68ecf80f643eca470e59984e138ab /chrome/browser/autofill/contact_info.h
parent7e7e96ddb9daf85e680a6240e96fdc288c314b20 (diff)
downloadchromium_src-7b37fbb72d90091c6d39be97037e9b089ca0f635.zip
chromium_src-7b37fbb72d90091c6d39be97037e9b089ca0f635.tar.gz
chromium_src-7b37fbb72d90091c6d39be97037e9b089ca0f635.tar.bz2
autofill: Rename AutoFillType to AutofillType.
BUG=72758 TEST=existing unit_tests Review URL: http://codereview.chromium.org/6626042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77140 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/contact_info.h')
-rw-r--r--chrome/browser/autofill/contact_info.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/autofill/contact_info.h b/chrome/browser/autofill/contact_info.h
index 98692ac..d743630 100644
--- a/chrome/browser/autofill/contact_info.h
+++ b/chrome/browser/autofill/contact_info.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -24,11 +24,11 @@ class ContactInfo : public FormGroup {
virtual void GetPossibleFieldTypes(const string16& text,
FieldTypeSet* possible_types) const;
virtual void GetAvailableFieldTypes(FieldTypeSet* available_types) const;
- virtual void FindInfoMatches(const AutoFillType& type,
+ virtual void FindInfoMatches(const AutofillType& type,
const string16& info,
std::vector<string16>* matched_text) const;
- virtual string16 GetFieldText(const AutoFillType& type) const;
- virtual void SetInfo(const AutoFillType& type, const string16& value);
+ virtual string16 GetFieldText(const AutofillType& type) const;
+ virtual void SetInfo(const AutofillType& type, const string16& value);
private:
friend class ContactInfoTest;