summaryrefslogtreecommitdiffstats
path: root/components/autofill/core/browser/address.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/autofill/core/browser/address.cc')
-rw-r--r--components/autofill/core/browser/address.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/autofill/core/browser/address.cc b/components/autofill/core/browser/address.cc
index 242fa24..031ff6b 100644
--- a/components/autofill/core/browser/address.cc
+++ b/components/autofill/core/browser/address.cc
@@ -120,7 +120,7 @@ void Address::SetRawInfo(ServerFieldType type, const base::string16& value) {
break;
case ADDRESS_HOME_STREET_ADDRESS:
- base::SplitString(value, char16('\n'), &street_address_);
+ base::SplitString(value, base::char16('\n'), &street_address_);
break;
default:
@@ -164,7 +164,7 @@ bool Address::SetInfo(const AutofillType& type,
// format, so the code would have to rely on iffy heuristics at best.
// Instead, just give up when importing addresses like this.
if (storable_type == ADDRESS_HOME_STREET_ADDRESS && !value.empty() &&
- value.find(char16('\n')) == base::string16::npos) {
+ value.find(base::char16('\n')) == base::string16::npos) {
street_address_.clear();
return false;
}