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

Unified Diff: chrome/browser/task_manager/task_manager_notification_browsertest.cc

Issue 120983002: 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
« no previous file with comments | « chrome/browser/task_manager/task_manager.cc ('k') | chrome/browser/task_manager/task_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/task_manager/task_manager_notification_browsertest.cc
diff --git a/chrome/browser/task_manager/task_manager_notification_browsertest.cc b/chrome/browser/task_manager/task_manager_notification_browsertest.cc
index c4cf92a8b424ffb4039ff6aea53acc5c2cda5c2b..c9ee629de203d82b6eacd49358f108062ebefd6f 100644
--- a/chrome/browser/task_manager/task_manager_notification_browsertest.cc
+++ b/chrome/browser/task_manager/task_manager_notification_browsertest.cc
@@ -62,16 +62,16 @@ IN_PROC_BROWSER_TEST_F(TaskManagerNotificationBrowserTest,
g_browser_process->notification_ui_manager();
base::string16 content = DesktopNotificationService::CreateDataUrl(
- GURL(), ASCIIToUTF16("Hello World!"), base::string16(),
+ GURL(), base::ASCIIToUTF16("Hello World!"), base::string16(),
blink::WebTextDirectionDefault);
scoped_refptr<NotificationDelegate> del1(new MockNotificationDelegate("n1"));
Notification n1(
- GURL(), GURL(content), ASCIIToUTF16("Test 1"), base::string16(),
+ GURL(), GURL(content), base::ASCIIToUTF16("Test 1"), base::string16(),
del1.get());
scoped_refptr<NotificationDelegate> del2(new MockNotificationDelegate("n2"));
Notification n2(
- GURL(), GURL(content), ASCIIToUTF16("Test 2"), base::string16(),
+ GURL(), GURL(content), base::ASCIIToUTF16("Test 2"), base::string16(),
del2.get());
notifications->Add(n1, browser()->profile());
« no previous file with comments | « chrome/browser/task_manager/task_manager.cc ('k') | chrome/browser/task_manager/task_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698