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

Side by Side Diff: base/metrics/sample_map.h

Issue 1413173005: Deprecate *_EXPORT_PRIVATE macros. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cl format Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « base/metrics/histogram_base.h ('k') | base/metrics/sample_vector.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // SampleMap implements HistogramSamples interface. It is used by the 5 // SampleMap implements HistogramSamples interface. It is used by the
6 // SparseHistogram class to store samples. 6 // SparseHistogram class to store samples.
7 7
8 #ifndef BASE_METRICS_SAMPLE_MAP_H_ 8 #ifndef BASE_METRICS_SAMPLE_MAP_H_
9 #define BASE_METRICS_SAMPLE_MAP_H_ 9 #define BASE_METRICS_SAMPLE_MAP_H_
10 10
11 #include <map> 11 #include <map>
12 12
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "base/metrics/histogram_base.h" 15 #include "base/metrics/histogram_base.h"
16 #include "base/metrics/histogram_samples.h" 16 #include "base/metrics/histogram_samples.h"
17 17
18 namespace base { 18 namespace base {
19 19
20 class BASE_EXPORT_PRIVATE SampleMap : public HistogramSamples { 20 class BASE_EXPORT SampleMap : public HistogramSamples {
21 public: 21 public:
22 SampleMap(); 22 SampleMap();
23 ~SampleMap() override; 23 ~SampleMap() override;
24 24
25 // HistogramSamples implementation: 25 // HistogramSamples implementation:
26 void Accumulate(HistogramBase::Sample value, 26 void Accumulate(HistogramBase::Sample value,
27 HistogramBase::Count count) override; 27 HistogramBase::Count count) override;
28 HistogramBase::Count GetCount(HistogramBase::Sample value) const override; 28 HistogramBase::Count GetCount(HistogramBase::Sample value) const override;
29 HistogramBase::Count TotalCount() const override; 29 HistogramBase::Count TotalCount() const override;
30 scoped_ptr<SampleCountIterator> Iterator() const override; 30 scoped_ptr<SampleCountIterator> Iterator() const override;
31 31
32 protected: 32 protected:
33 bool AddSubtractImpl( 33 bool AddSubtractImpl(
34 SampleCountIterator* iter, 34 SampleCountIterator* iter,
35 HistogramSamples::Operator op) override; // |op| is ADD or SUBTRACT. 35 HistogramSamples::Operator op) override; // |op| is ADD or SUBTRACT.
36 36
37 private: 37 private:
38 std::map<HistogramBase::Sample, HistogramBase::Count> sample_counts_; 38 std::map<HistogramBase::Sample, HistogramBase::Count> sample_counts_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(SampleMap); 40 DISALLOW_COPY_AND_ASSIGN(SampleMap);
41 }; 41 };
42 42
43 class BASE_EXPORT_PRIVATE SampleMapIterator : public SampleCountIterator { 43 class BASE_EXPORT SampleMapIterator : public SampleCountIterator {
44 public: 44 public:
45 typedef std::map<HistogramBase::Sample, HistogramBase::Count> 45 typedef std::map<HistogramBase::Sample, HistogramBase::Count>
46 SampleToCountMap; 46 SampleToCountMap;
47 47
48 explicit SampleMapIterator(const SampleToCountMap& sample_counts); 48 explicit SampleMapIterator(const SampleToCountMap& sample_counts);
49 ~SampleMapIterator() override; 49 ~SampleMapIterator() override;
50 50
51 // SampleCountIterator implementation: 51 // SampleCountIterator implementation:
52 bool Done() const override; 52 bool Done() const override;
53 void Next() override; 53 void Next() override;
54 void Get(HistogramBase::Sample* min, 54 void Get(HistogramBase::Sample* min,
55 HistogramBase::Sample* max, 55 HistogramBase::Sample* max,
56 HistogramBase::Count* count) const override; 56 HistogramBase::Count* count) const override;
57 57
58 private: 58 private:
59 void SkipEmptyBuckets(); 59 void SkipEmptyBuckets();
60 60
61 SampleToCountMap::const_iterator iter_; 61 SampleToCountMap::const_iterator iter_;
62 const SampleToCountMap::const_iterator end_; 62 const SampleToCountMap::const_iterator end_;
63 }; 63 };
64 64
65 } // namespace base 65 } // namespace base
66 66
67 #endif // BASE_METRICS_SAMPLE_MAP_H_ 67 #endif // BASE_METRICS_SAMPLE_MAP_H_
OLDNEW
« no previous file with comments | « base/metrics/histogram_base.h ('k') | base/metrics/sample_vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698