Index: webkit/compositor_bindings/WebLayerTreeViewImpl.cpp |
diff --git a/webkit/compositor_bindings/WebLayerTreeViewImpl.cpp b/webkit/compositor_bindings/WebLayerTreeViewImpl.cpp |
index 20e3d37495c6ca60b9b17517581edb0fb00cf284..30900d99b457a4f6efb95332793fe55944434f45 100644 |
--- a/webkit/compositor_bindings/WebLayerTreeViewImpl.cpp |
+++ b/webkit/compositor_bindings/WebLayerTreeViewImpl.cpp |
@@ -170,15 +170,18 @@ void WebLayerTreeViewImpl::renderingStats(WebRenderingStats& stats) const |
CCRenderingStats ccStats; |
m_layerTreeHost->renderingStats(&ccStats); |
- stats.numAnimationFrames = ccStats.numAnimationFrames; |
- stats.numFramesSentToScreen = ccStats.numFramesSentToScreen; |
+ stats.compositorSyncCount = ccStats.compositorSyncCount; |
+ stats.compositorSyncActiveCount = ccStats.compositorSyncActiveCount; |
+ stats.compositorFrameCount = ccStats.compositorFrameCount; |
+ stats.mainAnimationFrameCount = ccStats.mainAnimationFrameCount; |
+ stats.implAnimationFrameCount = ccStats.implAnimationFrameCount; |
stats.droppedFrameCount = ccStats.droppedFrameCount; |
stats.totalPaintTimeInSeconds = ccStats.totalPaintTimeInSeconds; |
stats.totalRasterizeTimeInSeconds = ccStats.totalRasterizeTimeInSeconds; |
stats.totalCommitTimeInSeconds = ccStats.totalCommitTimeInSeconds; |
stats.totalCommitCount = ccStats.totalCommitCount; |
- stats.numImplThreadScrolls = ccStats.numImplThreadScrolls; |
- stats.numMainThreadScrolls = ccStats.numMainThreadScrolls; |
+ stats.implThreadScrollCount = ccStats.implThreadScrollCount; |
+ stats.mainThreadScrollCount = ccStats.mainThreadScrollCount; |
} |
void WebLayerTreeViewImpl::setFontAtlas(SkBitmap bitmap, WebRect asciiToWebRectTable[128], int fontHeight) |