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

Unified Diff: cc/rendering_stats.h

Issue 11575015: adding render stats for deferred image decoding (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: delete RenderingStats after it is done Created 8 years 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/rendering_stats.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/rendering_stats.h
diff --git a/cc/rendering_stats.h b/cc/rendering_stats.h
index 3eafa80385e1dc90adc16f2a6e03af6b54385a95..6828b040649906c7395689265e57d3b77087693e 100644
--- a/cc/rendering_stats.h
+++ b/cc/rendering_stats.h
@@ -26,6 +26,11 @@ struct CC_EXPORT RenderingStats {
int64 numMainThreadScrolls;
int64 numLayersDrawn;
int64 numMissingTiles;
+ int64 totalDeferredImageDecodeCount;
+ int64 totalDeferredImageCacheHitCount;
+ int64 totalPixelGatheringCount;
reveman 2012/12/13 21:58:37 PixelGathering is not the best name. Can you make
qinmin 2012/12/13 22:42:55 Done.
+ double totalDeferredImageDecodeTimeInSeconds;
+ double totalPixelGatheringTimeInSeconds;
// Note: when adding new members, please remember to update enumerateFields
// in rendering_stats.cc.
« no previous file with comments | « no previous file | cc/rendering_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698