| 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 BASE_METRICS_HISTOGRAM_BASE_H_ | 5 #ifndef BASE_METRICS_HISTOGRAM_BASE_H_ |
| 6 #define BASE_METRICS_HISTOGRAM_BASE_H_ | 6 #define BASE_METRICS_HISTOGRAM_BASE_H_ |
| 7 | 7 |
| 8 #include <limits.h> | 8 #include <limits.h> |
| 9 #include <stddef.h> | 9 #include <stddef.h> |
| 10 #include <stdint.h> | 10 #include <stdint.h> |
| 11 | 11 |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/atomicops.h" | 16 #include "base/atomicops.h" |
| 17 #include "base/base_export.h" | 17 #include "base/base_export.h" |
| 18 #include "base/macros.h" | 18 #include "base/macros.h" |
| 19 #include "base/strings/string_piece.h" | 19 #include "base/strings/string_piece.h" |
| 20 #include "base/time/time.h" | 20 #include "base/time/time.h" |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 | 23 |
| 24 class BucketRanges; | |
| 25 class DictionaryValue; | 24 class DictionaryValue; |
| 26 class HistogramBase; | 25 class HistogramBase; |
| 27 class HistogramSamples; | 26 class HistogramSamples; |
| 28 class ListValue; | 27 class ListValue; |
| 29 class Pickle; | 28 class Pickle; |
| 30 class PickleIterator; | 29 class PickleIterator; |
| 31 | 30 |
| 32 //////////////////////////////////////////////////////////////////////////////// | 31 //////////////////////////////////////////////////////////////////////////////// |
| 33 // This enum is used to facilitate deserialization of histograms from other | 32 // This enum is used to facilitate deserialization of histograms from other |
| 34 // processes into the browser. If you create another class that inherits from | 33 // processes into the browser. If you create another class that inherits from |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 | 266 |
| 268 const std::string histogram_name_; | 267 const std::string histogram_name_; |
| 269 AtomicCount flags_; | 268 AtomicCount flags_; |
| 270 | 269 |
| 271 DISALLOW_COPY_AND_ASSIGN(HistogramBase); | 270 DISALLOW_COPY_AND_ASSIGN(HistogramBase); |
| 272 }; | 271 }; |
| 273 | 272 |
| 274 } // namespace base | 273 } // namespace base |
| 275 | 274 |
| 276 #endif // BASE_METRICS_HISTOGRAM_BASE_H_ | 275 #endif // BASE_METRICS_HISTOGRAM_BASE_H_ |
| OLD | NEW |