| Index: cc/CCLayerTreeHostImpl.cpp
|
| diff --git a/cc/CCLayerTreeHostImpl.cpp b/cc/CCLayerTreeHostImpl.cpp
|
| index 93c9dd301d22bb4604076e1e7d91695daf00b883..479348230892e799dbfa1596f84d39483b501013 100644
|
| --- a/cc/CCLayerTreeHostImpl.cpp
|
| +++ b/cc/CCLayerTreeHostImpl.cpp
|
| @@ -1284,10 +1284,10 @@ int CCLayerTreeHostImpl::sourceAnimationFrameNumber() const
|
| return fpsCounter()->currentFrameNumber();
|
| }
|
|
|
| -void CCLayerTreeHostImpl::renderingStats(CCRenderingStats& stats) const
|
| +void CCLayerTreeHostImpl::renderingStats(CCRenderingStats* stats) const
|
| {
|
| - stats.numFramesSentToScreen = fpsCounter()->currentFrameNumber();
|
| - stats.droppedFrameCount = fpsCounter()->droppedFrameCount();
|
| + stats->numFramesSentToScreen = fpsCounter()->currentFrameNumber();
|
| + stats->droppedFrameCount = fpsCounter()->droppedFrameCount();
|
| }
|
|
|
| void CCLayerTreeHostImpl::animateScrollbars(double monotonicTime)
|
|
|