diff options
Diffstat (limited to 'chrome/browser/browsing_data/browsing_data_remover_unittest.cc')
-rw-r--r-- | chrome/browser/browsing_data/browsing_data_remover_unittest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc index 99c3f73..5c9c7e7 100644 --- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc +++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc @@ -489,12 +489,12 @@ class RemoveAutofillTester : public autofill::PersonalDataManagerObserver { autofill::AutofillProfile profile; profile.set_guid(base::GenerateGUID()); profile.set_origin(kWebOrigin); - profile.SetRawInfo(autofill::NAME_FIRST, ASCIIToUTF16("Bob")); - profile.SetRawInfo(autofill::NAME_LAST, ASCIIToUTF16("Smith")); - profile.SetRawInfo(autofill::ADDRESS_HOME_ZIP, ASCIIToUTF16("94043")); + profile.SetRawInfo(autofill::NAME_FIRST, base::ASCIIToUTF16("Bob")); + profile.SetRawInfo(autofill::NAME_LAST, base::ASCIIToUTF16("Smith")); + profile.SetRawInfo(autofill::ADDRESS_HOME_ZIP, base::ASCIIToUTF16("94043")); profile.SetRawInfo(autofill::EMAIL_ADDRESS, - ASCIIToUTF16("sue@example.com")); - profile.SetRawInfo(autofill::COMPANY_NAME, ASCIIToUTF16("Company X")); + base::ASCIIToUTF16("sue@example.com")); + profile.SetRawInfo(autofill::COMPANY_NAME, base::ASCIIToUTF16("Company X")); profiles.push_back(profile); profile.set_guid(base::GenerateGUID()); @@ -509,7 +509,7 @@ class RemoveAutofillTester : public autofill::PersonalDataManagerObserver { card.set_guid(base::GenerateGUID()); card.set_origin(kWebOrigin); card.SetRawInfo(autofill::CREDIT_CARD_NUMBER, - ASCIIToUTF16("1234-5678-9012-3456")); + base::ASCIIToUTF16("1234-5678-9012-3456")); cards.push_back(card); card.set_guid(base::GenerateGUID()); |