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

Side by Side Diff: cc/rendering_stats.cc

Issue 10982078: Adding hooks for gathering total pixels painted and rasterized stats. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/rendering_stats.h ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include "config.h"
2 #include "cc/rendering_stats.h"
3
4 namespace cc {
5
6 CCRenderingStats::CCRenderingStats()
7 : numAnimationFrames(0)
8 , numFramesSentToScreen(0)
9 , droppedFrameCount(0)
10 , totalPaintTimeInSeconds(0)
11 , totalRasterizeTimeInSeconds(0)
12 , totalCommitTimeInSeconds(0)
13 , totalCommitCount(0)
14 , totalPixelsPainted(0)
15 , totalPixelsRasterized(0)
16 , numImplThreadScrolls(0)
17 , numMainThreadScrolls(0)
18 {
19 }
20 }
danakj 2012/10/16 17:20:08 style nit: }<space><space>// namespace cc
hartmanng 2012/10/24 21:07:00 Done.
OLDNEW
« no previous file with comments | « cc/rendering_stats.h ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698