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

Unified Diff: chrome/common/extensions/extension_file_util_unittest.cc

Issue 93793010: Update uses of UTF conversions in chrome/common 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/common/extensions/extension_file_util.cc ('k') | chrome/common/extensions/extension_l10n_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_file_util_unittest.cc
diff --git a/chrome/common/extensions/extension_file_util_unittest.cc b/chrome/common/extensions/extension_file_util_unittest.cc
index 71db8c9203747b215aebf6ba8a917d808546f3ca..bf541495dc7ae337af028c84c7d7d64fca62200d 100644
--- a/chrome/common/extensions/extension_file_util_unittest.cc
+++ b/chrome/common/extensions/extension_file_util_unittest.cc
@@ -311,7 +311,8 @@ TEST_F(ExtensionFileUtilTest, BackgroundScriptsMustExist) {
EXPECT_FALSE(extension_file_util::ValidateExtension(
extension.get(), &error, &warnings));
EXPECT_EQ(l10n_util::GetStringFUTF8(
- IDS_EXTENSION_LOAD_BACKGROUND_SCRIPT_FAILED, ASCIIToUTF16("foo.js")),
+ IDS_EXTENSION_LOAD_BACKGROUND_SCRIPT_FAILED,
+ base::ASCIIToUTF16("foo.js")),
error);
EXPECT_EQ(0U, warnings.size());
@@ -327,7 +328,7 @@ TEST_F(ExtensionFileUtilTest, BackgroundScriptsMustExist) {
extension.get(), &error, &warnings));
EXPECT_EQ(l10n_util::GetStringFUTF8(
IDS_EXTENSION_LOAD_BACKGROUND_SCRIPT_FAILED,
- ASCIIToUTF16("http://google.com/foo.js")),
+ base::ASCIIToUTF16("http://google.com/foo.js")),
error);
EXPECT_EQ(0U, warnings.size());
}
« no previous file with comments | « chrome/common/extensions/extension_file_util.cc ('k') | chrome/common/extensions/extension_l10n_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698