From 6c17851db5843c959c073b606f474434cddf5c19 Mon Sep 17 00:00:00 2001 From: "jhawkins@chromium.org" Date: Mon, 4 Jan 2010 20:27:25 +0000 Subject: 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 --- chrome/browser/autofill/credit_card_field.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/autofill/credit_card_field.h') diff --git a/chrome/browser/autofill/credit_card_field.h b/chrome/browser/autofill/credit_card_field.h index 4fed417..d870db7 100644 --- a/chrome/browser/autofill/credit_card_field.h +++ b/chrome/browser/autofill/credit_card_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 CreditCardField : public FormField { public: // FormField implementation: virtual bool GetFieldInfo(FieldTypeMap* field_type_map) const; - virtual FormFieldType GetFormFieldType() { return kCreditCardType; } + virtual FormFieldType GetFormFieldType() const { return kCreditCardType; } virtual int priority() const { return 4; } static CreditCardField* Parse( -- cgit v1.1