Index: chrome/browser/autofill/address.cc |
diff --git a/chrome/browser/autofill/address.cc b/chrome/browser/autofill/address.cc |
index 576a31477486735568284325ce42c91bb6594fdd..c5e61edb9c6097bd82a628d5269531aaed150d97 100644 |
--- a/chrome/browser/autofill/address.cc |
+++ b/chrome/browser/autofill/address.cc |
@@ -56,7 +56,7 @@ void Address::GetSupportedTypes(FieldTypeSet* supported_types) const { |
supported_types->insert(ADDRESS_HOME_COUNTRY); |
} |
-string16 Address::GetInfo(AutofillFieldType type) const { |
+string16 Address::GetRawInfo(AutofillFieldType type) const { |
if (type == ADDRESS_HOME_LINE1) |
return line1_; |
@@ -78,7 +78,7 @@ string16 Address::GetInfo(AutofillFieldType type) const { |
return string16(); |
} |
-void Address::SetInfo(AutofillFieldType type, const string16& value) { |
+void Address::SetRawInfo(AutofillFieldType type, const string16& value) { |
type = AutofillType::GetEquivalentFieldType(type); |
if (type == ADDRESS_HOME_LINE1) |
line1_ = value; |