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

Unified Diff: cc/layer_tree_host_impl.h

Issue 11478016: Add a stat to the smoothness benchmark for avg number of missing tiles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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
« no previous file with comments | « cc/append_quads_data.h ('k') | cc/layer_tree_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_tree_host_impl.h
diff --git a/cc/layer_tree_host_impl.h b/cc/layer_tree_host_impl.h
index d3c3fe867b2eb3bab8d1f3c4756d1ea20dc3c028..ef8f6525cc6fb1bd9abba7701f3ea01ccda35aaa 100644
--- a/cc/layer_tree_host_impl.h
+++ b/cc/layer_tree_host_impl.h
@@ -377,10 +377,12 @@ private:
scoped_ptr<FrameRateCounter> m_fpsCounter;
scoped_ptr<DebugRectHistory> m_debugRectHistory;
- size_t m_numImplThreadScrolls;
- size_t m_numMainThreadScrolls;
+ int64 m_numImplThreadScrolls;
+ int64 m_numMainThreadScrolls;
- size_t m_cumulativeNumLayersDrawn;
+ int64 m_cumulativeNumLayersDrawn;
+
+ int64 m_cumulativeNumMissingTiles;
nduca 2012/12/07 01:14:37 any reason using the word missingTiles vs numCheck
DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl);
};
« no previous file with comments | « cc/append_quads_data.h ('k') | cc/layer_tree_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698