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

Unified Diff: components/autofill/browser/android/test_auxiliary_profile_loader_android.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/android/test_auxiliary_profile_loader_android.cc
diff --git a/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc b/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc
index bf67d914f9bc85c980defb23b749dc8e87255072..1ec9cc9267a04fc098c5b135a35086b2cf9f2b53 100644
--- a/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc
+++ b/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc
@@ -14,112 +14,115 @@ bool TestAuxiliaryProfileLoader::GetHasPermissions() const {
return true;
}
-string16 TestAuxiliaryProfileLoader::GetFirstName() const {
+base::string16 TestAuxiliaryProfileLoader::GetFirstName() const {
return first_name_;
}
-string16 TestAuxiliaryProfileLoader::GetMiddleName() const {
+base::string16 TestAuxiliaryProfileLoader::GetMiddleName() const {
return middle_name_;
}
-string16 TestAuxiliaryProfileLoader::GetLastName() const {
+base::string16 TestAuxiliaryProfileLoader::GetLastName() const {
return last_name_;
}
-string16 TestAuxiliaryProfileLoader::GetSuffix() const {
+base::string16 TestAuxiliaryProfileLoader::GetSuffix() const {
return suffix_;
}
-string16 TestAuxiliaryProfileLoader::GetStreet() const {
+base::string16 TestAuxiliaryProfileLoader::GetStreet() const {
return street_;
}
-string16 TestAuxiliaryProfileLoader::GetPostOfficeBox() const {
+base::string16 TestAuxiliaryProfileLoader::GetPostOfficeBox() const {
return post_office_box_;
}
-string16 TestAuxiliaryProfileLoader::GetCity() const {
+base::string16 TestAuxiliaryProfileLoader::GetCity() const {
return city_;
}
-string16 TestAuxiliaryProfileLoader::GetNeighborhood() const {
+base::string16 TestAuxiliaryProfileLoader::GetNeighborhood() const {
return neighborhood_;
}
-string16 TestAuxiliaryProfileLoader::GetRegion() const {
+base::string16 TestAuxiliaryProfileLoader::GetRegion() const {
return region_;
}
-string16 TestAuxiliaryProfileLoader::GetPostalCode() const {
+base::string16 TestAuxiliaryProfileLoader::GetPostalCode() const {
return postal_code_;
}
-string16 TestAuxiliaryProfileLoader::GetCountry() const {
+base::string16 TestAuxiliaryProfileLoader::GetCountry() const {
return country_;
}
void TestAuxiliaryProfileLoader::GetEmailAddresses(
- std::vector<string16>* email_addresses) const {
+ std::vector<base::string16>* email_addresses) const {
*email_addresses = email_addresses_;
}
void TestAuxiliaryProfileLoader::GetPhoneNumbers(
- std::vector<string16>* phone_numbers) const {
+ std::vector<base::string16>* phone_numbers) const {
*phone_numbers = phone_numbers_;
}
-void TestAuxiliaryProfileLoader::SetFirstName(const string16& first_name) {
+void TestAuxiliaryProfileLoader::SetFirstName(
+ const base::string16& first_name) {
first_name_ = first_name;
}
-void TestAuxiliaryProfileLoader::SetMiddleName(const string16& middle_name) {
+void TestAuxiliaryProfileLoader::SetMiddleName(
+ const base::string16& middle_name) {
middle_name_ = middle_name;
}
-void TestAuxiliaryProfileLoader::SetLastName(const string16& last_name) {
+void TestAuxiliaryProfileLoader::SetLastName(const base::string16& last_name) {
last_name_ = last_name;
}
-void TestAuxiliaryProfileLoader::SetSuffix(const string16& suffix) {
+void TestAuxiliaryProfileLoader::SetSuffix(const base::string16& suffix) {
suffix_ = suffix;
}
-void TestAuxiliaryProfileLoader::SetStreet(const string16& street) {
+void TestAuxiliaryProfileLoader::SetStreet(const base::string16& street) {
street_ = street;
}
void TestAuxiliaryProfileLoader::SetPostOfficeBox(
- const string16& post_office_box) {
+ const base::string16& post_office_box) {
post_office_box_ = post_office_box;
}
void TestAuxiliaryProfileLoader::SetNeighborhood(
- const string16& neighborhood) {
+ const base::string16& neighborhood) {
neighborhood_ = neighborhood;
}
-void TestAuxiliaryProfileLoader::SetRegion(const string16& region) {
+void TestAuxiliaryProfileLoader::SetRegion(const base::string16& region) {
region_ = region;
}
-void TestAuxiliaryProfileLoader::SetCity(const string16& city) {
+void TestAuxiliaryProfileLoader::SetCity(const base::string16& city) {
city_ = city;
}
-void TestAuxiliaryProfileLoader::SetPostalCode(const string16& postal_code) {
+void TestAuxiliaryProfileLoader::SetPostalCode(
+ const base::string16& postal_code) {
postal_code_ = postal_code;
}
-void TestAuxiliaryProfileLoader::SetCountry(const string16& country) {
+void TestAuxiliaryProfileLoader::SetCountry(const base::string16& country) {
country_ = country;
}
void TestAuxiliaryProfileLoader::SetEmailAddresses(
- const std::vector<string16>& addresses) {
+ const std::vector<base::string16>& addresses) {
email_addresses_ = addresses;
}
void TestAuxiliaryProfileLoader::SetPhoneNumbers(
- const std::vector<string16>& phone_numbers) {
+ const std::vector<base::string16>& phone_numbers) {
phone_numbers_ = phone_numbers;
}

Powered by Google App Engine
This is Rietveld 408576698