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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm

Issue 112913004: Update some uses of UTF conversions in chrome/browser 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
Index: chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
index d9ee006516e438d6cf36e26ab6bdca71e30d111d..bba39d821038b7978c60c147700dcf09677801d5 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_account_chooser_unittest.mm
@@ -82,8 +82,8 @@ TEST_F(AutofillAccountChooserTest, PopulatesMenu) {
using namespace testing;
MenuDelegate delegate;
ui::SimpleMenuModel model(&delegate);
- model.AddItem(1, ASCIIToUTF16("one"));
- model.AddItem(2, ASCIIToUTF16("two"));
+ model.AddItem(1, base::ASCIIToUTF16("one"));
+ model.AddItem(2, base::ASCIIToUTF16("two"));
EXPECT_CALL(delegate_, MenuModelForAccountChooser())
.WillOnce(Return(&model));
« no previous file with comments | « chrome/browser/ui/browser_focus_uitest.cc ('k') | chrome/browser/ui/cocoa/autofill/autofill_details_container_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698