| 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:
|
|
|