diff options
author | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-28 03:53:29 +0000 |
---|---|---|
committer | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-28 03:53:29 +0000 |
commit | b3b5d0affe4c58208decd4a327812e202510a9e9 (patch) | |
tree | 45c0bce01a599f5e1221251302f492f48ac91d07 /cc/trees/layer_tree_host_impl.h | |
parent | 67ea507fbee5b2d1647f3b86a60c36e8ba40c797 (diff) | |
download | chromium_src-b3b5d0affe4c58208decd4a327812e202510a9e9.zip chromium_src-b3b5d0affe4c58208decd4a327812e202510a9e9.tar.gz chromium_src-b3b5d0affe4c58208decd4a327812e202510a9e9.tar.bz2 |
Revert 191086 "cc: Switch RenderingStats collection in Layer::Up..."
Looks like its DCHECKing on Win Aura interactive_ui_tests again. Same
error as before.
http://build.chromium.org/p/chromium.win/buildstatus?builder=Win%20Aura%20Tests%20%283%29&number=2148
> cc: Switch RenderingStats collection in Layer::Update() to RenderingStatsInstrumentation
>
> This change switches all of the remaining RenderingStats collection in
> composited mode to use RenderinStatsInstrumentation.
>
> BUG=181319
>
>
> Review URL: https://chromiumcodereview.appspot.com/12426024
TBR=egraether@chromium.org
Review URL: https://codereview.chromium.org/13145002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191101 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/trees/layer_tree_host_impl.h')
-rw-r--r-- | cc/trees/layer_tree_host_impl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h index 051e284..89133d0 100644 --- a/cc/trees/layer_tree_host_impl.h +++ b/cc/trees/layer_tree_host_impl.h @@ -449,6 +449,13 @@ class CC_EXPORT LayerTreeHostImpl : public InputHandlerClient, scoped_ptr<MemoryHistory> memory_history_; scoped_ptr<DebugRectHistory> debug_rect_history_; + int64 num_impl_thread_scrolls_; + int64 num_main_thread_scrolls_; + + int64 cumulative_num_layers_drawn_; + + int64 cumulative_num_missing_tiles_; + size_t last_sent_memory_visible_bytes_; size_t last_sent_memory_visible_and_nearby_bytes_; size_t last_sent_memory_use_bytes_; |