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

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: fix histograms.xml Created 4 years, 3 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
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 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_
OLDNEW
« no previous file with comments | « no previous file | cc/scheduler/compositor_timing_history.cc » ('j') | cc/scheduler/compositor_timing_history.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698