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

Unified Diff: cc/layer_tree_host_impl.h

Issue 11028021: cc: Improve frame/commit accounting (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Make it work in single tread mode. Get rid of active concept. 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/layer_tree_host_impl.h
diff --git a/cc/layer_tree_host_impl.h b/cc/layer_tree_host_impl.h
index be31eb90eafda3765acfee4c8c985efec29f2bff..368b2486a0faf3e6eac81eee4347c930fdb3bdb2 100644
--- a/cc/layer_tree_host_impl.h
+++ b/cc/layer_tree_host_impl.h
@@ -346,8 +346,9 @@ private:
scoped_ptr<CCFrameRateCounter> m_fpsCounter;
scoped_ptr<CCDebugRectHistory> m_debugRectHistory;
- size_t m_numImplThreadScrolls;
- size_t m_numMainThreadScrolls;
+ int64_t m_animationFrameCount;
+ int64_t m_implThreadScrollCount;
+ int64_t m_mainThreadScrollCount;
DISALLOW_COPY_AND_ASSIGN(CCLayerTreeHostImpl);
};

Powered by Google App Engine
This is Rietveld 408576698