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

Unified Diff: testing/android/native_test_launcher.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: testing/android/native_test_launcher.cc
diff --git a/testing/android/native_test_launcher.cc b/testing/android/native_test_launcher.cc
index 57a918bf56f9f00fed40a160a61011c6abfe2dc8..2fde735112c473b5dd35b55ff0f7164a398abd90 100644
--- a/testing/android/native_test_launcher.cc
+++ b/testing/android/native_test_launcher.cc
@@ -142,9 +142,9 @@ static void RunTests(JNIEnv* env,
dup2(STDOUT_FILENO, STDERR_FILENO);
if (command_line.HasSwitch(switches::kWaitForDebugger)) {
- std::string msg = StringPrintf("Native test waiting for GDB because "
- "flag %s was supplied",
- switches::kWaitForDebugger);
+ std::string msg = base::StringPrintf("Native test waiting for GDB because "
+ "flag %s was supplied",
+ switches::kWaitForDebugger);
__android_log_write(ANDROID_LOG_VERBOSE, kLogTag, msg.c_str());
base::debug::WaitForDebugger(24 * 60 * 60, false);
}

Powered by Google App Engine
This is Rietveld 408576698