| 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 #include "cc/output/begin_frame_args.h" | 13 #include "cc/output/begin_frame_args.h" |
| 13 | 14 |
| 14 namespace base { | 15 namespace base { |
| 15 namespace trace_event { | 16 namespace trace_event { |
| 16 class TracedValue; | 17 class TracedValue; |
| 17 } // namespace trace_event | 18 } // namespace trace_event |
| 18 } // namespace base | 19 } // namespace base |
| 19 | 20 |
| 20 namespace cc { | 21 namespace cc { |
| 21 | 22 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 std::unique_ptr<UMAReporter> uma_reporter_; | 126 std::unique_ptr<UMAReporter> uma_reporter_; |
| 126 RenderingStatsInstrumentation* rendering_stats_instrumentation_; | 127 RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
| 127 | 128 |
| 128 private: | 129 private: |
| 129 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); | 130 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); |
| 130 }; | 131 }; |
| 131 | 132 |
| 132 } // namespace cc | 133 } // namespace cc |
| 133 | 134 |
| 134 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ | 135 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ |
| OLD | NEW |