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

Unified Diff: components/autofill/content/browser/autofill_driver_impl_unittest.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (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
« no previous file with comments | « chromeos/settings/timezone_settings.cc ('k') | components/autofill/content/browser/risk/fingerprint.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/content/browser/autofill_driver_impl_unittest.cc
diff --git a/components/autofill/content/browser/autofill_driver_impl_unittest.cc b/components/autofill/content/browser/autofill_driver_impl_unittest.cc
index 1dcf256e319f623144ac617e02f066ceab8ca5fe..939aa8ce39404c0c0a62ad55f6d6cf0979abd0d2 100644
--- a/components/autofill/content/browser/autofill_driver_impl_unittest.cc
+++ b/components/autofill/content/browser/autofill_driver_impl_unittest.cc
@@ -252,7 +252,7 @@ TEST_F(AutofillDriverImplTest, FillActionSentToRenderer) {
}
TEST_F(AutofillDriverImplTest, AcceptDataListSuggestion) {
- base::string16 input_value(ASCIIToUTF16("barfoo"));
+ base::string16 input_value(base::ASCIIToUTF16("barfoo"));
base::string16 output_value;
driver_->RendererShouldAcceptDataListSuggestion(input_value);
EXPECT_TRUE(GetString16FromMessageWithID(
@@ -262,7 +262,7 @@ TEST_F(AutofillDriverImplTest, AcceptDataListSuggestion) {
}
TEST_F(AutofillDriverImplTest, AcceptPasswordAutofillSuggestion) {
- base::string16 input_value(ASCIIToUTF16("barbaz"));
+ base::string16 input_value(base::ASCIIToUTF16("barbaz"));
base::string16 output_value;
driver_->RendererShouldAcceptPasswordAutofillSuggestion(input_value);
EXPECT_TRUE(GetString16FromMessageWithID(
@@ -282,7 +282,7 @@ TEST_F(AutofillDriverImplTest, ClearPreviewedFormSentToRenderer) {
}
TEST_F(AutofillDriverImplTest, SetNodeText) {
- base::string16 input_value(ASCIIToUTF16("barqux"));
+ base::string16 input_value(base::ASCIIToUTF16("barqux"));
base::string16 output_value;
driver_->RendererShouldSetNodeText(input_value);
EXPECT_TRUE(GetString16FromMessageWithID(AutofillMsg_SetNodeText::ID,
« no previous file with comments | « chromeos/settings/timezone_settings.cc ('k') | components/autofill/content/browser/risk/fingerprint.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698