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

Unified Diff: components/autofill/browser/contact_info.cc

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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
Index: components/autofill/browser/contact_info.cc
diff --git a/components/autofill/browser/contact_info.cc b/components/autofill/browser/contact_info.cc
index 7911ea8a7a38134bf64f92f961d3a8cba583f05e..019d0768ba2dc357dd4bcb583a7eedea277ff828 100644
--- a/components/autofill/browser/contact_info.cc
+++ b/components/autofill/browser/contact_info.cc
@@ -50,7 +50,7 @@ void NameInfo::GetSupportedTypes(FieldTypeSet* supported_types) const {
supported_types->insert(NAME_FULL);
}
-string16 NameInfo::GetRawInfo(AutofillFieldType type) const {
+base::string16 NameInfo::GetRawInfo(AutofillFieldType type) const {
if (type == NAME_FIRST)
return first();
@@ -66,10 +66,10 @@ string16 NameInfo::GetRawInfo(AutofillFieldType type) const {
if (type == NAME_FULL)
return FullName();
- return string16();
+ return base::string16();
}
-void NameInfo::SetRawInfo(AutofillFieldType type, const string16& value) {
+void NameInfo::SetRawInfo(AutofillFieldType type, const base::string16& value) {
DCHECK_EQ(AutofillType::NAME, AutofillType(type).group());
if (type == NAME_FIRST)
first_ = value;
@@ -83,8 +83,8 @@ void NameInfo::SetRawInfo(AutofillFieldType type, const string16& value) {
NOTREACHED();
}
-string16 NameInfo::FullName() const {
- std::vector<string16> full_name;
+base::string16 NameInfo::FullName() const {
+ std::vector<base::string16> full_name;
if (!first_.empty())
full_name.push_back(first_);
@@ -97,23 +97,23 @@ string16 NameInfo::FullName() const {
return JoinString(full_name, ' ');
}
-string16 NameInfo::MiddleInitial() const {
+base::string16 NameInfo::MiddleInitial() const {
if (middle_.empty())
- return string16();
+ return base::string16();
- string16 middle_name(middle());
- string16 initial;
+ base::string16 middle_name(middle());
+ base::string16 initial;
initial.push_back(middle_name[0]);
return initial;
}
-void NameInfo::SetFullName(const string16& full) {
+void NameInfo::SetFullName(const base::string16& full) {
// Clear the names.
- first_ = string16();
- middle_ = string16();
- last_ = string16();
+ first_ = base::string16();
+ middle_ = base::string16();
+ last_ = base::string16();
- std::vector<string16> full_name_tokens;
+ std::vector<base::string16> full_name_tokens;
Tokenize(full, ASCIIToUTF16(" "), &full_name_tokens);
// There are four possibilities: empty; first name; first and last names;
@@ -151,14 +151,15 @@ void EmailInfo::GetSupportedTypes(FieldTypeSet* supported_types) const {
supported_types->insert(EMAIL_ADDRESS);
}
-string16 EmailInfo::GetRawInfo(AutofillFieldType type) const {
+base::string16 EmailInfo::GetRawInfo(AutofillFieldType type) const {
if (type == EMAIL_ADDRESS)
return email_;
- return string16();
+ return base::string16();
}
-void EmailInfo::SetRawInfo(AutofillFieldType type, const string16& value) {
+void EmailInfo::SetRawInfo(AutofillFieldType type,
+ const base::string16& value) {
DCHECK_EQ(EMAIL_ADDRESS, type);
email_ = value;
}
@@ -183,14 +184,15 @@ void CompanyInfo::GetSupportedTypes(FieldTypeSet* supported_types) const {
supported_types->insert(COMPANY_NAME);
}
-string16 CompanyInfo::GetRawInfo(AutofillFieldType type) const {
+base::string16 CompanyInfo::GetRawInfo(AutofillFieldType type) const {
if (type == COMPANY_NAME)
return company_name_;
- return string16();
+ return base::string16();
}
-void CompanyInfo::SetRawInfo(AutofillFieldType type, const string16& value) {
+void CompanyInfo::SetRawInfo(AutofillFieldType type,
+ const base::string16& value) {
DCHECK_EQ(COMPANY_NAME, type);
company_name_ = value;
}

Powered by Google App Engine
This is Rietveld 408576698