diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-24 23:24:23 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-24 23:24:23 +0000 |
commit | f911df5f3947379800704cb2b0193b0976336b22 (patch) | |
tree | d08ecc8ee4bb4580794294e59d702c1c0d7c0424 /chrome/browser/task_manager/task_manager_notification_browsertest.cc | |
parent | 04338722eaee6d09b761353fb6e937b41933ff5e (diff) | |
download | chromium_src-f911df5f3947379800704cb2b0193b0976336b22.zip chromium_src-f911df5f3947379800704cb2b0193b0976336b22.tar.gz chromium_src-f911df5f3947379800704cb2b0193b0976336b22.tar.bz2 |
Update some uses of UTF conversions in chrome/browser to use the base:: namespace.
BUG=330556
TEST=no change
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/120983002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242465 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/task_manager/task_manager_notification_browsertest.cc')
-rw-r--r-- | chrome/browser/task_manager/task_manager_notification_browsertest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/task_manager/task_manager_notification_browsertest.cc b/chrome/browser/task_manager/task_manager_notification_browsertest.cc index c4cf92a..c9ee629 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()); |