Index: cc/rendering_stats.cc |
diff --git a/cc/rendering_stats.cc b/cc/rendering_stats.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b28e58eb20827df4d5626e7c747c512c26d36868 |
--- /dev/null |
+++ b/cc/rendering_stats.cc |
@@ -0,0 +1,26 @@ |
+// Copyright 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "config.h" |
+ |
+#include "cc/rendering_stats.h" |
+ |
+namespace cc { |
+ |
+RenderingStats::RenderingStats() |
+ : numAnimationFrames(0) |
+ , numFramesSentToScreen(0) |
+ , droppedFrameCount(0) |
+ , totalPaintTimeInSeconds(0) |
+ , totalRasterizeTimeInSeconds(0) |
+ , totalCommitTimeInSeconds(0) |
+ , totalCommitCount(0) |
+ , totalPixelsPainted(0) |
+ , totalPixelsRasterized(0) |
+ , numImplThreadScrolls(0) |
+ , numMainThreadScrolls(0) |
Ian Vollick
2012/10/30 19:58:37
This is correct WebKit style, but I'd go for chrom
hartmanng
2012/10/30 20:10:51
Done.
|
+{ |
+} |
Ian Vollick
2012/10/30 19:58:37
I think chromium style would have the curlies on t
danakj
2012/10/30 20:01:25
The leading curly is on the last line of the initi
hartmanng
2012/10/30 20:10:51
Done.
hartmanng
2012/10/30 20:10:51
Done.
|
+ |
+} // namespace cc |