diff options
author | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-30 19:08:58 +0000 |
---|---|---|
committer | egraether@chromium.org <egraether@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-30 19:08:58 +0000 |
commit | ccd6d9d28d43c2718b9148ff5ceb3f32b7edddda (patch) | |
tree | ac4e2e8ec49738b5fadfedbb237a886b14b95eb7 /cc/trees | |
parent | b543739c5afd0dc6111b212840deae1678825c34 (diff) | |
download | chromium_src-ccd6d9d28d43c2718b9148ff5ceb3f32b7edddda.zip chromium_src-ccd6d9d28d43c2718b9148ff5ceb3f32b7edddda.tar.gz chromium_src-ccd6d9d28d43c2718b9148ff5ceb3f32b7edddda.tar.bz2 |
cc: Remove unused fields originally used for RenderingStats collection
BUG=181319
Review URL: https://chromiumcodereview.appspot.com/13246003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/trees')
-rw-r--r-- | cc/trees/layer_tree_host_impl.h | 7 | ||||
-rw-r--r-- | cc/trees/single_thread_proxy.cc | 3 | ||||
-rw-r--r-- | cc/trees/single_thread_proxy.h | 3 |
3 files changed, 1 insertions, 12 deletions
diff --git a/cc/trees/layer_tree_host_impl.h b/cc/trees/layer_tree_host_impl.h index 08ade52..520fc90 100644 --- a/cc/trees/layer_tree_host_impl.h +++ b/cc/trees/layer_tree_host_impl.h @@ -453,13 +453,6 @@ 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_; - // The maximum memory that would be used by the prioritized resource // manager, if there were no limit on memory usage. size_t max_memory_needed_bytes_; diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc index c5f9e94..84c24e0 100644 --- a/cc/trees/single_thread_proxy.cc +++ b/cc/trees/single_thread_proxy.cc @@ -29,8 +29,7 @@ SingleThreadProxy::SingleThreadProxy(LayerTreeHost* layer_tree_host) created_offscreen_context_provider_(false), renderer_initialized_(false), next_frame_is_newly_committed_frame_(false), - inside_draw_(false), - total_commit_count_(0) { + inside_draw_(false) { TRACE_EVENT0("cc", "SingleThreadProxy::SingleThreadProxy"); DCHECK(Proxy::IsMainThread()); DCHECK(layer_tree_host); diff --git a/cc/trees/single_thread_proxy.h b/cc/trees/single_thread_proxy.h index ff8a9d3..140ef20 100644 --- a/cc/trees/single_thread_proxy.h +++ b/cc/trees/single_thread_proxy.h @@ -104,9 +104,6 @@ class SingleThreadProxy : public Proxy, LayerTreeHostImplClient { bool inside_draw_; - base::TimeDelta total_commit_time_; - size_t total_commit_count_; - DISALLOW_COPY_AND_ASSIGN(SingleThreadProxy); }; |