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

Unified Diff: cc/CCLayerTreeHostImpl.h

Issue 11028021: cc: Improve frame/commit accounting (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Use uint64_t and rename variables to *Count 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 side-by-side diff with in-line comments
Download patch
Index: cc/CCLayerTreeHostImpl.h
diff --git a/cc/CCLayerTreeHostImpl.h b/cc/CCLayerTreeHostImpl.h
index 691a9b007e0605b59e35516305b8812c5626d679..bfc66905376bb346b44f267bbf6bd7883dbea6ed 100644
--- a/cc/CCLayerTreeHostImpl.h
+++ b/cc/CCLayerTreeHostImpl.h
@@ -291,11 +291,12 @@ private:
// rendering and input event hit testing.
CCLayerList m_renderSurfaceLayerList;
+ uint64_t m_animationFrameCount;
OwnPtr<CCFrameRateCounter> m_fpsCounter;
OwnPtr<CCDebugRectHistory> m_debugRectHistory;
- size_t m_numImplThreadScrolls;
- size_t m_numMainThreadScrolls;
+ uint64_t m_implThreadScrollCount;
+ uint64_t m_mainThreadScrollCount;
DISALLOW_COPY_AND_ASSIGN(CCLayerTreeHostImpl);
};

Powered by Google App Engine
This is Rietveld 408576698