Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1217)

Unified Diff: chrome/browser/autofill/contact_info.h

Issue 11360055: [Autofill] Rename GetInfo and SetInfo to GetRawInfo and SetRawInfo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase harder Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/autofill/autofill_profile_unittest.cc ('k') | chrome/browser/autofill/contact_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/contact_info.h
diff --git a/chrome/browser/autofill/contact_info.h b/chrome/browser/autofill/contact_info.h
index 832bfc35a32d90ce88a7de7e11b3edc5203d78c3..9f2a70b308ae42a4f8009f9a1056cfe08af9e836 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:
« no previous file with comments | « chrome/browser/autofill/autofill_profile_unittest.cc ('k') | chrome/browser/autofill/contact_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698