diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-04 20:27:25 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-04 20:27:25 +0000 |
commit | 6c17851db5843c959c073b606f474434cddf5c19 (patch) | |
tree | ca18cefae8e06d37b648dd36a28e3dd2ecddfc5a /chrome/browser/autofill/address_field.h | |
parent | 5ed7c01ee895b37c12252bc63d769af26f9093ec (diff) | |
download | chromium_src-6c17851db5843c959c073b606f474434cddf5c19.zip chromium_src-6c17851db5843c959c073b606f474434cddf5c19.tar.gz chromium_src-6c17851db5843c959c073b606f474434cddf5c19.tar.bz2 |
Implement ContactInfo, the FormGroup that stores contact information.
BUG=none
TEST=StringUtilTest.Tokenizer
Review URL: http://codereview.chromium.org/502103
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35475 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/address_field.h')
-rw-r--r-- | chrome/browser/autofill/address_field.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/address_field.h b/chrome/browser/autofill/address_field.h index 58ea0de..bd568d8 100644 --- a/chrome/browser/autofill/address_field.h +++ b/chrome/browser/autofill/address_field.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 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. @@ -15,7 +15,7 @@ class AutoFillField; class AddressField : public FormField { public: virtual bool GetFieldInfo(FieldTypeMap* field_type_map) const; - virtual FormFieldType GetFormFieldType() { return kAddressType; } + virtual FormFieldType GetFormFieldType() const { return kAddressType; } virtual int priority() const { return 3; } static AddressField* Parse(std::vector<AutoFillField*>::const_iterator* iter, |