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

Unified Diff: cc/debug/rendering_stats.cc

Issue 12780025: cc: Chromify rendering_stats (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Renamed vars, removed fixme Created 7 years, 9 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 | « cc/debug/rendering_stats.h ('k') | cc/resources/bitmap_content_layer_updater.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/rendering_stats.cc
diff --git a/cc/debug/rendering_stats.cc b/cc/debug/rendering_stats.cc
index 28e70893d1bd10a8719cbda8f4df198131face92..d0292c43b81b60c64bc7aee8ef129dfe8d7bcd76 100644
--- a/cc/debug/rendering_stats.cc
+++ b/cc/debug/rendering_stats.cc
@@ -7,72 +7,74 @@
namespace cc {
RenderingStats::RenderingStats()
- : numAnimationFrames(0),
- numFramesSentToScreen(0),
- droppedFrameCount(0),
- totalCommitCount(0),
- totalPixelsPainted(0),
- totalPixelsRasterized(0),
- numImplThreadScrolls(0),
- numMainThreadScrolls(0),
- numLayersDrawn(0),
- numMissingTiles(0),
- totalDeferredImageDecodeCount(0),
- totalDeferredImageCacheHitCount(0),
- totalImageGatheringCount(0) {
-}
+ : animation_frame_count(0),
+ screen_frame_count(0),
+ dropped_frame_count(0),
+ total_commit_count(0),
+ total_pixels_painted(0),
+ total_pixels_rasterized(0),
+ num_impl_thread_scrolls(0),
+ num_main_thread_scrolls(0),
+ num_layers_drawn(0),
+ num_missing_tiles(0),
+ total_deferred_image_decode_count(0),
+ total_deferred_image_cache_hit_count(0),
+ total_image_gathering_count(0) {}
void RenderingStats::EnumerateFields(Enumerator* enumerator) const {
- enumerator->AddInt64("numAnimationFrames", numAnimationFrames);
- enumerator->AddInt64("numFramesSentToScreen", numFramesSentToScreen);
- enumerator->AddInt64("droppedFrameCount", droppedFrameCount);
- enumerator->AddDouble("totalPaintTimeInSeconds",
- totalPaintTime.InSecondsF());
- enumerator->AddDouble("totalRasterizeTimeInSeconds",
- totalRasterizeTime.InSecondsF());
- enumerator->AddDouble("totalRasterizeTimeForNowBinsOnPendingTree",
- totalRasterizeTimeForNowBinsOnPendingTree.InSecondsF());
- enumerator->AddDouble("totalCommitTimeInSeconds",
- totalCommitTime.InSecondsF());
- enumerator->AddInt64("totalCommitCount", totalCommitCount);
- enumerator->AddInt64("totalPixelsPainted", totalPixelsPainted);
- enumerator->AddInt64("totalPixelsRasterized", totalPixelsRasterized);
- enumerator->AddInt64("numImplThreadScrolls", numImplThreadScrolls);
- enumerator->AddInt64("numMainThreadScrolls", numMainThreadScrolls);
- enumerator->AddInt64("numLayersDrawn", numLayersDrawn);
- enumerator->AddInt64("numMissingTiles", numMissingTiles);
- enumerator->AddInt64("totalDeferredImageDecodeCount",
- totalDeferredImageDecodeCount);
- enumerator->AddInt64("totalDeferredImageCacheHitCount",
- totalDeferredImageCacheHitCount);
- enumerator->AddInt64("totalImageGatheringCount", totalImageGatheringCount);
- enumerator->AddDouble("totalDeferredImageDecodeTimeInSeconds",
- totalDeferredImageDecodeTime.InSecondsF());
- enumerator->AddDouble("totalImageGatheringTimeInSeconds",
- totalImageGatheringTime.InSecondsF());
+ enumerator->AddInt64("animation_frame_count", animation_frame_count);
jamesr 2013/03/20 22:53:15 this enumerator is exposed API to JS extensions li
+ enumerator->AddInt64("screen_frame_count", screen_frame_count);
+ enumerator->AddInt64("dropped_frame_count", dropped_frame_count);
+ enumerator->AddDouble("total_paint_timeInSeconds",
+ total_paint_time.InSecondsF());
+ enumerator->AddDouble("total_rasterize_timeInSeconds",
+ total_rasterize_time.InSecondsF());
+ enumerator->AddDouble(
+ "total_rasterize_time_for_now_bins_on_pending_tree",
+ total_rasterize_time_for_now_bins_on_pending_tree.InSecondsF());
+ enumerator->AddDouble("total_commit_timeInSeconds",
+ total_commit_time.InSecondsF());
+ enumerator->AddInt64("total_commit_count", total_commit_count);
+ enumerator->AddInt64("total_pixels_painted", total_pixels_painted);
+ enumerator->AddInt64("total_pixels_rasterized", total_pixels_rasterized);
+ enumerator->AddInt64("num_impl_thread_scrolls", num_impl_thread_scrolls);
+ enumerator->AddInt64("num_main_thread_scrolls", num_main_thread_scrolls);
+ enumerator->AddInt64("num_layers_drawn", num_layers_drawn);
+ enumerator->AddInt64("num_missing_tiles", num_missing_tiles);
+ enumerator->AddInt64("total_deferred_image_decode_count",
+ total_deferred_image_decode_count);
+ enumerator->AddInt64("total_deferred_image_cache_hit_count",
+ total_deferred_image_cache_hit_count);
+ enumerator->AddInt64("total_image_gathering_count",
+ total_image_gathering_count);
+ enumerator->AddDouble("total_deferred_image_decode_timeInSeconds",
+ total_deferred_image_decode_time.InSecondsF());
+ enumerator->AddDouble("total_image_gathering_timeInSeconds",
+ total_image_gathering_time.InSecondsF());
}
void RenderingStats::Add(const RenderingStats& other) {
- numAnimationFrames += other.numAnimationFrames;
- numFramesSentToScreen += other.numFramesSentToScreen;
- droppedFrameCount += other.droppedFrameCount;
- totalPaintTime += other.totalPaintTime;
- totalRasterizeTime += other.totalRasterizeTime;
- totalRasterizeTimeForNowBinsOnPendingTree +=
- other.totalRasterizeTimeForNowBinsOnPendingTree;
- totalCommitTime += other.totalCommitTime;
- totalCommitCount += other.totalCommitCount;
- totalPixelsPainted += other.totalPixelsPainted;
- totalPixelsRasterized += other.totalPixelsRasterized;
- numImplThreadScrolls += other.numImplThreadScrolls;
- numMainThreadScrolls += other.numMainThreadScrolls;
- numLayersDrawn += other.numLayersDrawn;
- numMissingTiles += other.numMissingTiles;
- totalDeferredImageDecodeCount += other.totalDeferredImageDecodeCount;
- totalDeferredImageCacheHitCount += other.totalDeferredImageCacheHitCount;
- totalImageGatheringCount += other.totalImageGatheringCount;
- totalDeferredImageDecodeTime += other.totalDeferredImageDecodeTime;
- totalImageGatheringTime += other.totalImageGatheringTime;
+ animation_frame_count += other.animation_frame_count;
+ screen_frame_count += other.screen_frame_count;
+ dropped_frame_count += other.dropped_frame_count;
+ total_paint_time += other.total_paint_time;
+ total_rasterize_time += other.total_rasterize_time;
+ total_rasterize_time_for_now_bins_on_pending_tree +=
+ other.total_rasterize_time_for_now_bins_on_pending_tree;
+ total_commit_time += other.total_commit_time;
+ total_commit_count += other.total_commit_count;
+ total_pixels_painted += other.total_pixels_painted;
+ total_pixels_rasterized += other.total_pixels_rasterized;
+ num_impl_thread_scrolls += other.num_impl_thread_scrolls;
+ num_main_thread_scrolls += other.num_main_thread_scrolls;
+ num_layers_drawn += other.num_layers_drawn;
+ num_missing_tiles += other.num_missing_tiles;
+ total_deferred_image_decode_count += other.total_deferred_image_decode_count;
+ total_deferred_image_cache_hit_count +=
+ other.total_deferred_image_cache_hit_count;
+ total_image_gathering_count += other.total_image_gathering_count;
+ total_deferred_image_decode_time += other.total_deferred_image_decode_time;
+ total_image_gathering_time += other.total_image_gathering_time;
}
} // namespace cc
« no previous file with comments | « cc/debug/rendering_stats.h ('k') | cc/resources/bitmap_content_layer_updater.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698