| 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);
|
|
|