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

Unified Diff: chrome_frame/test/perf/chrome_frame_perftest.cc

Issue 4974001: base: Get rid of 'using' declaration of StringAppendF. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 10 years, 1 month 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/test/tab_switching/tab_switching_test.cc ('k') | courgette/adjustment_method.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/perf/chrome_frame_perftest.cc
diff --git a/chrome_frame/test/perf/chrome_frame_perftest.cc b/chrome_frame/test/perf/chrome_frame_perftest.cc
index 8d845b5828f9b1a56a28380ae3807be690134810..67220aaf2f003d30afbad3416fa5a29b54772bc3 100644
--- a/chrome_frame/test/perf/chrome_frame_perftest.cc
+++ b/chrome_frame/test/perf/chrome_frame_perftest.cc
@@ -348,7 +348,7 @@ class ChromeFrameStartupTest : public ChromeFramePerfTestBase {
std::string times;
for (int i = 0; i < kNumCycles; ++i)
- StringAppendF(&times, "%.2f,", timings[i].InMillisecondsF());
+ base::StringAppendF(&times, "%.2f,", timings[i].InMillisecondsF());
PrintResultList(graph, "", trace, times, "ms", important);
}
@@ -1382,8 +1382,9 @@ void PrintPerfTestResults(const Monitor* monitor,
for (int i = 0; i < num_cycles; ++i) {
ASSERT_TRUE(monitor[i].is_valid());
- StringAppendF(&times, "%.2f,",
- monitor[i].duration().InMillisecondsF());
+ base::StringAppendF(&times,
+ "%.2f,",
+ monitor[i].duration().InMillisecondsF());
}
PrintResultList(result_name, "", "t", times, "ms", false);
« no previous file with comments | « chrome/test/tab_switching/tab_switching_test.cc ('k') | courgette/adjustment_method.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698