summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/contact_info.h
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 06:31:18 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 06:31:18 +0000
commit6b44b58e2c0e2262c0a48344bd30215d8c06aed7 (patch)
tree3d48e8f560c8ee1a12062bd8c271d48bc09d95b1 /chrome/browser/autofill/contact_info.h
parent6eb6bb601716161c58f0ed647a705856df0a03ec (diff)
downloadchromium_src-6b44b58e2c0e2262c0a48344bd30215d8c06aed7.zip
chromium_src-6b44b58e2c0e2262c0a48344bd30215d8c06aed7.tar.gz
chromium_src-6b44b58e2c0e2262c0a48344bd30215d8c06aed7.tar.bz2
[Autofill] Rename GetInfo and SetInfo to GetRawInfo and SetRawInfo
This is part 1 of a multi-CL change to always read the application locale from an appropriate thread in the Autofill code. The next CL will rename GetCanonicalizedInfo and SetCanonicalizedInfo to GetInfo and SetInfo, and add a |locale| parameter to these methods. Subsequent CLs will migrate all Autofill code that currently access the locale to always access it from the UI thread. BUG=100845 TEST=none (pure refactoring) TBR=dhollowa@chromium.org, akalin@chromium.org, bauerb@chromium.org Review URL: https://chromiumcodereview.appspot.com/11360055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/contact_info.h')
-rw-r--r--chrome/browser/autofill/contact_info.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/chrome/browser/autofill/contact_info.h b/chrome/browser/autofill/contact_info.h
index 832bfc3..9f2a70b 100644
--- a/chrome/browser/autofill/contact_info.h
+++ b/chrome/browser/autofill/contact_info.h
@@ -22,8 +22,9 @@ class NameInfo : public FormGroup {
NameInfo& operator=(const NameInfo& info);
// FormGroup:
- virtual string16 GetInfo(AutofillFieldType type) const OVERRIDE;
- virtual void SetInfo(AutofillFieldType type, const string16& value) OVERRIDE;
+ virtual string16 GetRawInfo(AutofillFieldType type) const OVERRIDE;
+ virtual void SetRawInfo(AutofillFieldType type,
+ const string16& value) OVERRIDE;
private:
// FormGroup:
@@ -59,8 +60,9 @@ class EmailInfo : public FormGroup {
EmailInfo& operator=(const EmailInfo& info);
// FormGroup:
- virtual string16 GetInfo(AutofillFieldType type) const OVERRIDE;
- virtual void SetInfo(AutofillFieldType type, const string16& value) OVERRIDE;
+ virtual string16 GetRawInfo(AutofillFieldType type) const OVERRIDE;
+ virtual void SetRawInfo(AutofillFieldType type,
+ const string16& value) OVERRIDE;
private:
// FormGroup:
@@ -78,8 +80,9 @@ class CompanyInfo : public FormGroup {
CompanyInfo& operator=(const CompanyInfo& info);
// FormGroup:
- virtual string16 GetInfo(AutofillFieldType type) const OVERRIDE;
- virtual void SetInfo(AutofillFieldType type, const string16& value) OVERRIDE;
+ virtual string16 GetRawInfo(AutofillFieldType type) const OVERRIDE;
+ virtual void SetRawInfo(AutofillFieldType type,
+ const string16& value) OVERRIDE;
private:
// FormGroup: