diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-24 18:49:33 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-24 18:49:33 +0000 |
commit | 1fe96d0176a2014e38af43154cd27cbf64cf99bc (patch) | |
tree | dde084bd7272b178765fae9eb3097910d2b1f9b5 /chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc | |
parent | 28126586a68d2aaed9557c505e10ebc20f50ed5b (diff) | |
download | chromium_src-1fe96d0176a2014e38af43154cd27cbf64cf99bc.zip chromium_src-1fe96d0176a2014e38af43154cd27cbf64cf99bc.tar.gz chromium_src-1fe96d0176a2014e38af43154cd27cbf64cf99bc.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/120943002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242449 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc')
-rw-r--r-- | chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc b/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc index 7548d10..577c984 100644 --- a/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc +++ b/chrome/browser/chromeos/file_manager/desktop_notifications_unittest.cc @@ -174,7 +174,7 @@ TEST(FileManagerMountNotificationsTest, UnsupportedDevice) { EXPECT_EQ(notification_path, notifications.params()[1].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_DEVICE_UNSUPPORTED_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[1].message); } @@ -226,7 +226,7 @@ TEST(FileManagerMountNotificationsTest, UnsupportedWithUnknownParent) { EXPECT_EQ(notification_path, notifications.params()[3].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_DEVICE_UNSUPPORTED_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[3].message); } @@ -266,7 +266,7 @@ TEST(FileManagerMountNotificationsTest, MountPartialSuccess) { EXPECT_EQ(notification_path, notifications.params()[1].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_MULTIPART_DEVICE_UNSUPPORTED_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[1].message); } @@ -298,7 +298,7 @@ TEST(FileManagerMountNotificationsTest, Unknown) { EXPECT_EQ(notification_path, notifications.params()[1].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_DEVICE_UNKNOWN_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[1].message); } @@ -331,7 +331,7 @@ TEST(FileManagerMountNotificationsTest, NonASCIILabel) { EXPECT_EQ(notification_path, notifications.params()[1].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_DEVICE_UNKNOWN_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[1].message); } @@ -363,7 +363,7 @@ TEST(FileManagerMountNotificationsTest, MulitpleFail) { EXPECT_EQ(notification_path, notifications.params()[1].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_DEVICE_UNKNOWN_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[1].message); notifications.ManageNotificationsOnMountCompleted( @@ -386,7 +386,7 @@ TEST(FileManagerMountNotificationsTest, MulitpleFail) { EXPECT_EQ(notification_path, notifications.params()[3].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_DEVICE_UNKNOWN_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[3].message); notifications.ManageNotificationsOnMountCompleted( @@ -409,7 +409,7 @@ TEST(FileManagerMountNotificationsTest, MulitpleFail) { EXPECT_EQ(notification_path, notifications.params()[5].path); EXPECT_EQ( l10n_util::GetStringFUTF16(IDS_MULTIPART_DEVICE_UNSUPPORTED_MESSAGE, - UTF8ToUTF16(device_label)), + base::UTF8ToUTF16(device_label)), notifications.params()[5].message); notifications.ManageNotificationsOnMountCompleted( |