| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/base_export.h" | 10 #include "base/base_export.h" |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/time.h" | 13 #include "base/time/time.h" |
| 14 | 14 |
| 15 class Pickle; | 15 class Pickle; |
| 16 class PickleIterator; | 16 class PickleIterator; |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 | 19 |
| 20 class DictionaryValue; | 20 class DictionaryValue; |
| 21 class HistogramBase; | 21 class HistogramBase; |
| 22 class HistogramSamples; | 22 class HistogramSamples; |
| 23 class ListValue; | 23 class ListValue; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 private: | 162 private: |
| 163 const std::string histogram_name_; | 163 const std::string histogram_name_; |
| 164 int32 flags_; | 164 int32 flags_; |
| 165 | 165 |
| 166 DISALLOW_COPY_AND_ASSIGN(HistogramBase); | 166 DISALLOW_COPY_AND_ASSIGN(HistogramBase); |
| 167 }; | 167 }; |
| 168 | 168 |
| 169 } // namespace base | 169 } // namespace base |
| 170 | 170 |
| 171 #endif // BASE_METRICS_HISTOGRAM_BASE_H_ | 171 #endif // BASE_METRICS_HISTOGRAM_BASE_H_ |
| OLD | NEW |