Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: cc/scheduler/compositor_timing_history.h

Issue 2258253002: cc: Add a Scheduling.SwapAckWasFast UMA. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | cc/scheduler/compositor_timing_history.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
120 std::unique_ptr<UMAReporter> uma_reporter_; 123 std::unique_ptr<UMAReporter> uma_reporter_;
121 RenderingStatsInstrumentation* rendering_stats_instrumentation_; 124 RenderingStatsInstrumentation* rendering_stats_instrumentation_;
122 125
123 private: 126 private:
124 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory); 127 DISALLOW_COPY_AND_ASSIGN(CompositorTimingHistory);
125 }; 128 };
126 129
127 } // namespace cc 130 } // namespace cc
128 131
129 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_ 132 #endif // CC_SCHEDULER_COMPOSITOR_TIMING_HISTORY_H_
OLDNEW
« no previous file with comments | « no previous file | cc/scheduler/compositor_timing_history.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698