diff options
Diffstat (limited to 'chrome/browser/autofill/form_group.h')
-rw-r--r-- | chrome/browser/autofill/form_group.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/autofill/form_group.h b/chrome/browser/autofill/form_group.h index dd40fcd..de1229f 100644 --- a/chrome/browser/autofill/form_group.h +++ b/chrome/browser/autofill/form_group.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. @@ -35,21 +35,21 @@ class FormGroup { // Returns the string that should be auto-filled into a text field given the // type of that field. - virtual string16 GetFieldText(const AutoFillType& type) const = 0; + virtual string16 GetFieldText(const AutofillType& type) const = 0; // Returns the text for preview. - virtual string16 GetPreviewText(const AutoFillType& type) const; + virtual string16 GetPreviewText(const AutofillType& type) const; // Used to determine if the text being typed into a field matches the // information in this FormGroup object. This is used by the preview // functionality. |matched_text| will be populated with all of the possible // matches given the type. This method is additive on |matched_text|. - virtual void FindInfoMatches(const AutoFillType& type, + virtual void FindInfoMatches(const AutofillType& type, const string16& info, std::vector<string16>* matched_text) const = 0; // Used to populate this FormGroup object with data. - virtual void SetInfo(const AutoFillType& type, const string16& value) = 0; + virtual void SetInfo(const AutofillType& type, const string16& value) = 0; // Returns the label for this FormGroup item. This should be overridden for // form group items that implement a label. |