Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Unified Diff: trunk/src/chrome/browser/extensions/api/notifications/notifications_apitest.cc

Issue 107423005: Revert 242450 "Update some uses of UTF conversions in chrome/bro..." (Closed) Base URL: svn://svn.chromium.org/chrome/
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: trunk/src/chrome/browser/extensions/api/notifications/notifications_apitest.cc
===================================================================
--- trunk/src/chrome/browser/extensions/api/notifications/notifications_apitest.cc (revision 242453)
+++ trunk/src/chrome/browser/extensions/api/notifications/notifications_apitest.cc (working copy)
@@ -720,8 +720,8 @@
g_browser_process->message_center()->GetVisibleNotifications();
ASSERT_EQ(1u, notifications.size());
message_center::Notification* notification = *(notifications.begin());
- EXPECT_EQ(base::ASCIIToUTF16(kNewTitle), notification->title());
- EXPECT_EQ(base::ASCIIToUTF16(kNewMessage), notification->message());
+ EXPECT_EQ(ASCIIToUTF16(kNewTitle), notification->title());
+ EXPECT_EQ(ASCIIToUTF16(kNewMessage), notification->message());
EXPECT_EQ(kNewPriority, notification->priority());
EXPECT_EQ(0u, notification->buttons().size());
}

Powered by Google App Engine
This is Rietveld 408576698