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

Unified Diff: content/common/webplugininfo_unittest.cc

Issue 121033002: Update uses of UTF conversions in content/ 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 | « content/common/sandbox_mac_diraccess_unittest.mm ('k') | content/ppapi_plugin/broker_process_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/webplugininfo_unittest.cc
diff --git a/content/common/webplugininfo_unittest.cc b/content/common/webplugininfo_unittest.cc
index 3464bab560280d012a4d8d8bed0118494039066d..e067e45acc65f98ecc6b8ca5d9743dea84dace04 100644
--- a/content/common/webplugininfo_unittest.cc
+++ b/content/common/webplugininfo_unittest.cc
@@ -33,7 +33,7 @@ TEST(PluginUtilsTest, VersionExtraction) {
for (size_t i = 0; i < arraysize(versions); i++) {
base::Version version;
WebPluginInfo::CreateVersionFromString(
- ASCIIToUTF16(versions[i][0]), &version);
+ base::ASCIIToUTF16(versions[i][0]), &version);
ASSERT_TRUE(version.IsValid());
EXPECT_EQ(versions[i][1], version.GetString());
« no previous file with comments | « content/common/sandbox_mac_diraccess_unittest.mm ('k') | content/ppapi_plugin/broker_process_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698