| 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 #ifndef CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ | 5 #ifndef CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ |
| 6 #define CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ | 6 #define CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "cc/base/rolling_time_delta_history.h" | 11 #include "cc/base/rolling_time_delta_history.h" |
| 12 #include "cc/cc_export.h" |
| 12 | 13 |
| 13 namespace base { | 14 namespace base { |
| 14 namespace trace_event { | 15 namespace trace_event { |
| 15 class TracedValue; | 16 class TracedValue; |
| 16 } // namespace trace_event | 17 } // namespace trace_event |
| 17 } // namespace base | 18 } // namespace base |
| 18 | 19 |
| 19 namespace cc { | 20 namespace cc { |
| 20 | 21 |
| 21 class RenderingStatsInstrumentation; | 22 class RenderingStatsInstrumentation; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 std::unique_ptr<UMAReporter> uma_reporter_; | 124 std::unique_ptr<UMAReporter> uma_reporter_; |
| 124 RenderingStatsInstrumentation* rendering_stats_instrumentation_; | 125 RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
| 125 | 126 |
| 126 private: | 127 private: |
| 127 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); | 128 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); |
| 128 }; | 129 }; |
| 129 | 130 |
| 130 } // namespace cc | 131 } // namespace cc |
| 131 | 132 |
| 132 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ | 133 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ |
| OLD | NEW |