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

Unified Diff: base/histogram.cc

Issue 2936005: Compress and checksum pending logs that are going to be persisted. ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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: base/histogram.cc
===================================================================
--- base/histogram.cc (revision 52884)
+++ base/histogram.cc (working copy)
@@ -589,9 +589,9 @@
return histogram;
}
-scoped_refptr<Histogram> LinearHistogram::FactoryGet(const std::string& name,
- base::TimeDelta minimum, base::TimeDelta maximum, size_t bucket_count,
- Flags flags) {
+scoped_refptr<Histogram> LinearHistogram::FactoryTimeGet(
+ const std::string& name, base::TimeDelta minimum, base::TimeDelta maximum,
+ size_t bucket_count, Flags flags) {
return FactoryGet(name, minimum.InMilliseconds(), maximum.InMilliseconds(),
bucket_count, flags);
}
« no previous file with comments | « base/histogram.h ('k') | base/values.cc » ('j') | chrome/browser/metrics/metrics_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698