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

Unified Diff: base/histogram.h

Issue 3452030: FBTF: Moves code to the headers. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 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
« no previous file with comments | « base/base.gypi ('k') | base/histogram.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/histogram.h
diff --git a/base/histogram.h b/base/histogram.h
index adf673c679b68a8a29adcd5aae9c834ef0ab34f4..0287d3770ca6eb4baaa10131b418b14b9509526d 100644
--- a/base/histogram.h
+++ b/base/histogram.h
@@ -272,6 +272,8 @@ class Histogram : public base::RefCountedThreadSafe<Histogram> {
class SampleSet {
public:
explicit SampleSet();
+ ~SampleSet();
+
// Adjust size of counts_ for use with given histogram.
void Resize(const Histogram& histogram);
void CheckSize(const Histogram& histogram) const;
@@ -490,6 +492,8 @@ class LinearHistogram : public Histogram {
base::TimeDelta minimum, base::TimeDelta maximum, size_t bucket_count,
Flags flags);
+ virtual ~LinearHistogram();
+
protected:
LinearHistogram(const std::string& name, Sample minimum,
Sample maximum, size_t bucket_count);
« no previous file with comments | « base/base.gypi ('k') | base/histogram.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698