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

Unified Diff: net/test/python_utils_unittest.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 months 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
Index: net/test/python_utils_unittest.cc
diff --git a/net/test/python_utils_unittest.cc b/net/test/python_utils_unittest.cc
index 6d5a041de8ff57b26c0f3121a25e6a7797f3aa7e..09f6630b7247b1de38bb29d4c9b2f793e0598759 100644
--- a/net/test/python_utils_unittest.cc
+++ b/net/test/python_utils_unittest.cc
@@ -52,7 +52,7 @@ TEST(PythonUtils, PythonRunTime) {
// we want.
cmd_line.AppendArg("-c");
std::string input("PythonUtilsTest");
- std::string python_cmd = StringPrintf("print '%s';", input.c_str());
+ std::string python_cmd = base::StringPrintf("print '%s';", input.c_str());
cmd_line.AppendArg(python_cmd);
std::string output;
EXPECT_TRUE(base::GetAppOutput(cmd_line, &output));

Powered by Google App Engine
This is Rietveld 408576698