Chromium Code Reviews| 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. |