| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "base/metrics/histogram_snapshot_manager.h" | 5 #include "base/metrics/histogram_snapshot_manager.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| 11 #include "base/metrics/histogram_delta_serialization.h" | 11 #include "base/metrics/histogram_delta_serialization.h" |
| 12 #include "base/metrics/statistics_recorder.h" | 12 #include "base/metrics/statistics_recorder.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 | 16 |
| 17 class HistogramFlattenerDeltaRecorder : public HistogramFlattener { | 17 class HistogramFlattenerDeltaRecorder : public HistogramFlattener { |
| 18 public: | 18 public: |
| 19 HistogramFlattenerDeltaRecorder() {} | 19 HistogramFlattenerDeltaRecorder() {} |
| 20 | 20 |
| 21 virtual void RecordDelta(const HistogramBase& histogram, | 21 virtual void RecordDelta(const HistogramBase& histogram, |
| 22 const HistogramSamples& snapshot) OVERRIDE { | 22 const HistogramSamples& snapshot) override { |
| 23 recorded_delta_histogram_names_.push_back(histogram.histogram_name()); | 23 recorded_delta_histogram_names_.push_back(histogram.histogram_name()); |
| 24 } | 24 } |
| 25 | 25 |
| 26 virtual void InconsistencyDetected( | 26 virtual void InconsistencyDetected( |
| 27 HistogramBase::Inconsistency problem) OVERRIDE { | 27 HistogramBase::Inconsistency problem) override { |
| 28 ASSERT_TRUE(false); | 28 ASSERT_TRUE(false); |
| 29 } | 29 } |
| 30 | 30 |
| 31 virtual void UniqueInconsistencyDetected( | 31 virtual void UniqueInconsistencyDetected( |
| 32 HistogramBase::Inconsistency problem) OVERRIDE { | 32 HistogramBase::Inconsistency problem) override { |
| 33 ASSERT_TRUE(false); | 33 ASSERT_TRUE(false); |
| 34 } | 34 } |
| 35 | 35 |
| 36 virtual void InconsistencyDetectedInLoggedCount(int amount) OVERRIDE { | 36 virtual void InconsistencyDetectedInLoggedCount(int amount) override { |
| 37 ASSERT_TRUE(false); | 37 ASSERT_TRUE(false); |
| 38 } | 38 } |
| 39 | 39 |
| 40 std::vector<std::string> GetRecordedDeltaHistogramNames() { | 40 std::vector<std::string> GetRecordedDeltaHistogramNames() { |
| 41 return recorded_delta_histogram_names_; | 41 return recorded_delta_histogram_names_; |
| 42 } | 42 } |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 std::vector<std::string> recorded_delta_histogram_names_; | 45 std::vector<std::string> recorded_delta_histogram_names_; |
| 46 | 46 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 histogram_snapshot_manager_.PrepareDeltas( | 97 histogram_snapshot_manager_.PrepareDeltas( |
| 98 HistogramBase::kNoFlags, HistogramBase::kUmaStabilityHistogramFlag); | 98 HistogramBase::kNoFlags, HistogramBase::kUmaStabilityHistogramFlag); |
| 99 | 99 |
| 100 const std::vector<std::string>& histograms = | 100 const std::vector<std::string>& histograms = |
| 101 histogram_flattener_delta_recorder_.GetRecordedDeltaHistogramNames(); | 101 histogram_flattener_delta_recorder_.GetRecordedDeltaHistogramNames(); |
| 102 EXPECT_EQ(1U, histograms.size()); | 102 EXPECT_EQ(1U, histograms.size()); |
| 103 EXPECT_EQ("UmaStabilityHistogram", histograms[0]); | 103 EXPECT_EQ("UmaStabilityHistogram", histograms[0]); |
| 104 } | 104 } |
| 105 | 105 |
| 106 } // namespace base | 106 } // namespace base |
| OLD | NEW |