| OLD | NEW |
| 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 #ifndef NET_DISK_CACHE_STATS_HISTOGRAM_H_ | 5 #ifndef NET_DISK_CACHE_V2_STATS_HISTOGRAM_H_ |
| 6 #define NET_DISK_CACHE_STATS_HISTOGRAM_H_ | 6 #define NET_DISK_CACHE_V2_STATS_HISTOGRAM_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class BucketRanges; | 14 class BucketRanges; |
| 15 class HistogramSamples; | 15 class HistogramSamples; |
| 16 class SampleVector; | 16 class SampleVector; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 virtual int FindCorruption( | 48 virtual int FindCorruption( |
| 49 const base::HistogramSamples& samples) const OVERRIDE; | 49 const base::HistogramSamples& samples) const OVERRIDE; |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 const Stats* stats_; | 52 const Stats* stats_; |
| 53 DISALLOW_COPY_AND_ASSIGN(StatsHistogram); | 53 DISALLOW_COPY_AND_ASSIGN(StatsHistogram); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace disk_cache | 56 } // namespace disk_cache |
| 57 | 57 |
| 58 #endif // NET_DISK_CACHE_STATS_HISTOGRAM_H_ | 58 #endif // NET_DISK_CACHE_V2_STATS_HISTOGRAM_H_ |
| OLD | NEW |