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

Unified Diff: chrome/browser/autofill/autofill_interactive_uitest.cc

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: chrome/browser/autofill/autofill_interactive_uitest.cc
diff --git a/chrome/browser/autofill/autofill_interactive_uitest.cc b/chrome/browser/autofill/autofill_interactive_uitest.cc
index dcc38108af3b062986d53f5d1c3b86e2384dcba6..5ea8a0de8323c5e758f7aff1f0bcfcfca2a50853 100644
--- a/chrome/browser/autofill/autofill_interactive_uitest.cc
+++ b/chrome/browser/autofill/autofill_interactive_uitest.cc
@@ -1023,13 +1023,13 @@ IN_PROC_BROWSER_TEST_F(AutofillInteractiveTest,
std::vector<AutofillProfile> profiles;
for (int i = 0; i < kNumProfiles; i++) {
AutofillProfile profile;
- string16 name(base::IntToString16(i));
- string16 email(name + ASCIIToUTF16("@example.com"));
- string16 street = ASCIIToUTF16(
+ base::string16 name(base::IntToString16(i));
+ base::string16 email(name + ASCIIToUTF16("@example.com"));
+ base::string16 street = ASCIIToUTF16(
base::IntToString(base::RandInt(0, 10000)) + " " +
streets[base::RandInt(0, streets.size() - 1)]);
- string16 city = ASCIIToUTF16(cities[base::RandInt(0, cities.size() - 1)]);
- string16 zip(base::IntToString16(base::RandInt(0, 10000)));
+ base::string16 city = ASCIIToUTF16(cities[base::RandInt(0, cities.size() - 1)]);
+ base::string16 zip(base::IntToString16(base::RandInt(0, 10000)));
profile.SetRawInfo(NAME_FIRST, name);
profile.SetRawInfo(EMAIL_ADDRESS, email);
profile.SetRawInfo(ADDRESS_HOME_LINE1, street);
« no previous file with comments | « chrome/browser/autofill/autofill_driver_impl_browsertest.cc ('k') | chrome/browser/automation/automation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698