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

Unified Diff: cc/debug/rendering_stats.h

Issue 26031002: cc: Remove unused metrics from RenderingStats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed raster_worker_pool_perftest.cc Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cc/debug/rendering_stats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/rendering_stats.h
diff --git a/cc/debug/rendering_stats.h b/cc/debug/rendering_stats.h
index 3bff1d4fe54b207448d5f878620d3f9d0153a1d4..cd6d7c87131172f2a160ac66878b42170765cabc 100644
--- a/cc/debug/rendering_stats.h
+++ b/cc/debug/rendering_stats.h
@@ -32,17 +32,11 @@ struct CC_EXPORT MainThreadRenderingStats {
// Note: when adding new members, please remember to update EnumerateFields
// and Add in rendering_stats.cc.
- int64 animation_frame_count;
- int64 screen_frame_count;
+ int64 frame_count;
base::TimeDelta paint_time;
- base::TimeDelta record_time;
- base::TimeDelta best_record_time;
- base::TimeDelta commit_time;
- int64 commit_count;
int64 painted_pixel_count;
+ base::TimeDelta record_time;
int64 recorded_pixel_count;
- int64 image_gathering_count;
- base::TimeDelta image_gathering_time;
MainThreadRenderingStats();
void IssueTraceEvent() const;
@@ -54,22 +48,9 @@ struct CC_EXPORT ImplThreadRenderingStats {
// Note: when adding new members, please remember to update EnumerateFields
// and Add in rendering_stats.cc.
- int64 screen_frame_count;
- int64 dropped_frame_count;
+ int64 frame_count;
base::TimeDelta rasterize_time;
- base::TimeDelta rasterize_time_for_now_bins_on_pending_tree;
- base::TimeDelta best_rasterize_time;
int64 rasterized_pixel_count;
- int64 impl_thread_scroll_count;
- int64 main_thread_scroll_count;
- int64 drawn_layer_count;
- int64 missing_tile_count;
- int64 deferred_image_decode_count;
- int64 deferred_image_cache_hit_count;
- int64 tile_analysis_count;
- int64 solid_color_tile_analysis_count;
- base::TimeDelta deferred_image_decode_time;
- base::TimeDelta tile_analysis_time;
ImplThreadRenderingStats();
void IssueTraceEvent() const;
« no previous file with comments | « no previous file | cc/debug/rendering_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698