| 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(×, "%.2f,", timings[i].InMillisecondsF());
|
| + base::StringAppendF(×, "%.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(×, "%.2f,",
|
| - monitor[i].duration().InMillisecondsF());
|
| + base::StringAppendF(×,
|
| + "%.2f,",
|
| + monitor[i].duration().InMillisecondsF());
|
| }
|
|
|
| PrintResultList(result_name, "", "t", times, "ms", false);
|
|
|