Index: base/metrics/histogram_base.h |
=================================================================== |
--- base/metrics/histogram_base.h (revision 242519) |
+++ base/metrics/histogram_base.h (working copy) |
@@ -49,7 +49,8 @@ |
class BASE_EXPORT HistogramBase { |
public: |
typedef int Sample; // Used for samples. |
- typedef subtle::Atomic32 Count; // Used to count samples. |
+ typedef subtle::Atomic32 AtomicCount; // Used to count samples. |
+ typedef int32 Count; // Used to manipulate counts in temporaries. |
static const Sample kSampleType_MAX; // INT_MAX |