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

Unified Diff: cc/rendering_stats.cc

Issue 12209022: cc: add rasterize time to continuous painting graph data in impl-side-painting (Closed) Base URL: http://git.chromium.org/chromium/src.git@raster
Patch Set: assume that rasterize time is saved after paint time Created 7 years, 10 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
Index: cc/rendering_stats.cc
diff --git a/cc/rendering_stats.cc b/cc/rendering_stats.cc
index c7824a0b665760fd660cf834f8895cf47f09e22f..2295217f783c10ca9def6f5e7d5462c7fa712f17 100644
--- a/cc/rendering_stats.cc
+++ b/cc/rendering_stats.cc
@@ -30,6 +30,8 @@ void RenderingStats::EnumerateFields(Enumerator* enumerator) const {
totalPaintTime.InSecondsF());
enumerator->AddDouble("totalRasterizeTimeInSeconds",
totalRasterizeTime.InSecondsF());
+ enumerator->AddDouble("totalRasterizeTimeForNowBinsOnPendingTree",
+ totalRasterizeTimeForNowBinsOnPendingTree.InSecondsF());
enumerator->AddDouble("totalCommitTimeInSeconds",
totalCommitTime.InSecondsF());
enumerator->AddInt64("totalCommitCount", totalCommitCount);
« cc/paint_time_counter.cc ('K') | « cc/rendering_stats.h ('k') | cc/ring_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698