Index: base/metrics/histogram_base.cc |
=================================================================== |
--- base/metrics/histogram_base.cc (revision 149721) |
+++ base/metrics/histogram_base.cc (working copy) |
@@ -4,12 +4,15 @@ |
#include "base/metrics/histogram_base.h" |
+#include <climits> |
Ilya Sherman
2012/08/04 01:18:35
nit: This is already included in the header. Did
kaiwang
2012/08/08 03:59:33
Done, removed the one in .h
|
+ |
namespace base { |
const HistogramBase::Sample HistogramBase::kSampleType_MAX = INT_MAX; |
HistogramBase::HistogramBase(const std::string& name) |
- : histogram_name_(name) {} |
+ : histogram_name_(name), |
+ flags_(kNoFlags) {} |
HistogramBase::~HistogramBase() {} |