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

Unified Diff: chrome/browser/sync/test/integration/performance/sync_timing_helper.cc

Issue 1358513003: Use correct IntToString variants in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/browser/sync/test/integration/performance/sync_timing_helper.cc
diff --git a/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc b/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc
index 0ef29a9fec5b508acb80981f7f4f126e8b3d278d..d5f46e64324c7fb3fbf10d07413bb16179cd472f 100644
--- a/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc
+++ b/chrome/browser/sync/test/integration/performance/sync_timing_helper.cc
@@ -45,5 +45,5 @@ void SyncTimingHelper::PrintResult(const std::string& measurement,
const std::string& trace,
const base::TimeDelta& dt) {
printf("*RESULT %s: %s= %s ms\n", measurement.c_str(), trace.c_str(),
- base::IntToString(dt.InMillisecondsF()).c_str());
+ base::Int64ToString(dt.InMilliseconds()).c_str());
}

Powered by Google App Engine
This is Rietveld 408576698