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

Unified Diff: chrome/test/reliability/automated_ui_tests.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: chrome/test/reliability/automated_ui_tests.cc
diff --git a/chrome/test/reliability/automated_ui_tests.cc b/chrome/test/reliability/automated_ui_tests.cc
index 22266c4b4801948e09982364f24ad30493abea1d..fd50b23cc6e75abf2803b83dd1217221b9acbb64 100644
--- a/chrome/test/reliability/automated_ui_tests.cc
+++ b/chrome/test/reliability/automated_ui_tests.cc
@@ -259,7 +259,7 @@ void AutomatedUITest::RunReproduction() {
LogSuccessResult();
}
- AppendToTestLog(StringPrintf("total_duration_seconds=%f",
+ AppendToTestLog(base::StringPrintf("total_duration_seconds=%f",
CalculateTestDuration(test_start_time_)));
WriteReportToFile();
}
@@ -360,7 +360,7 @@ void AutomatedUITest::RunAutomatedUITest() {
}
}
- AppendToTestLog(StringPrintf("total_duration_seconds=%f",
+ AppendToTestLog(base::StringPrintf("total_duration_seconds=%f",
CalculateTestDuration(test_start_time_)));
// The test is finished so write our report.

Powered by Google App Engine
This is Rietveld 408576698