| 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" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 base::TimeTicks begin_main_frame_sent_time_; | 110 base::TimeTicks begin_main_frame_sent_time_; |
| 111 base::TimeTicks begin_main_frame_start_time_; | 111 base::TimeTicks begin_main_frame_start_time_; |
| 112 base::TimeTicks begin_main_frame_end_time_; | 112 base::TimeTicks begin_main_frame_end_time_; |
| 113 base::TimeTicks pending_tree_main_frame_time_; | 113 base::TimeTicks pending_tree_main_frame_time_; |
| 114 base::TimeTicks prepare_tiles_start_time_; | 114 base::TimeTicks prepare_tiles_start_time_; |
| 115 base::TimeTicks activate_start_time_; | 115 base::TimeTicks activate_start_time_; |
| 116 base::TimeTicks active_tree_main_frame_time_; | 116 base::TimeTicks active_tree_main_frame_time_; |
| 117 base::TimeTicks draw_start_time_; | 117 base::TimeTicks draw_start_time_; |
| 118 base::TimeTicks swap_start_time_; | 118 base::TimeTicks swap_start_time_; |
| 119 | 119 |
| 120 // Watchdog timers. |
| 121 bool swap_ack_watchdog_enabled_; |
| 122 int swap_ack_watchdog_begin_impl_frame_count_; |
| 123 |
| 120 std::unique_ptr<UMAReporter> uma_reporter_; | 124 std::unique_ptr<UMAReporter> uma_reporter_; |
| 121 RenderingStatsInstrumentation* rendering_stats_instrumentation_; | 125 RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
| 122 | 126 |
| 123 private: | 127 private: |
| 124 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); | 128 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); |
| 125 }; | 129 }; |
| 126 | 130 |
| 127 } // namespace cc | 131 } // namespace cc |
| 128 | 132 |
| 129 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ | 133 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ |
| OLD | NEW |