diff options
author | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 23:04:55 +0000 |
---|---|---|
committer | dhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 23:04:55 +0000 |
commit | 3b3a0ca7214f89a01cea18b98b3de289165a7166 (patch) | |
tree | 6a84be99eda9211c123dc384b08deceba83e22db /chrome/browser/autofill/address.h | |
parent | 45e616f2c317128ed25714a8cdc35d7d8ff9f43a (diff) | |
download | chromium_src-3b3a0ca7214f89a01cea18b98b3de289165a7166.zip chromium_src-3b3a0ca7214f89a01cea18b98b3de289165a7166.tar.gz chromium_src-3b3a0ca7214f89a01cea18b98b3de289165a7166.tar.bz2 |
Autofill rename GetFieldText to GetInfo
Renames AutofillProfile::GetFieldText to AutofillProfile::GetInfo. To match SetInfo.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6713002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78622 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/address.h')
-rw-r--r-- | chrome/browser/autofill/address.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autofill/address.h b/chrome/browser/autofill/address.h index 009451b..d030049 100644 --- a/chrome/browser/autofill/address.h +++ b/chrome/browser/autofill/address.h @@ -29,7 +29,7 @@ class Address : public FormGroup { virtual void FindInfoMatches(AutofillFieldType type, const string16& info, std::vector<string16>* matched_text) const; - virtual string16 GetFieldText(AutofillFieldType type) const; + virtual string16 GetInfo(AutofillFieldType type) const; virtual void SetInfo(AutofillFieldType type, const string16& value); const std::string& country_code() const { return country_code_; } |