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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_notification_container_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_notification_container_unittest.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
index fb93662e20215ffbfdd7121f84346d0a1df3803c..5d1a29da4c2fe743238e75eedc5469dc029b6955 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_notification_container_unittest.mm
@@ -40,7 +40,7 @@ TEST_F(AutofillNotificationContainerTest, Subviews) {
notifications.push_back(
autofill::DialogNotification(
autofill::DialogNotification::REQUIRED_ACTION,
- ASCIIToUTF16("test")));
+ base::ASCIIToUTF16("test")));
ASSERT_FALSE(notifications[0].HasArrow());
[container_ setNotifications:notifications];
@@ -50,7 +50,7 @@ TEST_F(AutofillNotificationContainerTest, Subviews) {
notifications.push_back(
autofill::DialogNotification(
autofill::DialogNotification::REQUIRED_ACTION,
- ASCIIToUTF16("test")));
+ base::ASCIIToUTF16("test")));
ASSERT_FALSE(notifications[1].HasArrow());
[container_ setNotifications:notifications];

Powered by Google App Engine
This is Rietveld 408576698