OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "config.h" | |
jamesr
2012/11/07 06:11:20
you don't need this, remove. you only need this if
hartmanng
2012/11/07 14:45:02
Done.
| |
6 | |
7 #include "cc/rendering_stats.h" | |
8 | |
9 namespace cc { | |
10 | |
11 RenderingStats::RenderingStats() | |
12 : numAnimationFrames(0), | |
13 numFramesSentToScreen(0), | |
14 droppedFrameCount(0), | |
15 totalPaintTimeInSeconds(0), | |
16 totalRasterizeTimeInSeconds(0), | |
17 totalCommitTimeInSeconds(0), | |
18 totalCommitCount(0), | |
19 totalPixelsPainted(0), | |
20 totalPixelsRasterized(0), | |
21 numImplThreadScrolls(0), | |
22 numMainThreadScrolls(0) { | |
23 } | |
24 | |
25 } // namespace cc | |
OLD | NEW |