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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/append_quads_data.h ('k') | cc/layer_tree_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYER_TREE_HOST_IMPL_H_ 5 #ifndef CC_LAYER_TREE_HOST_IMPL_H_
6 #define CC_LAYER_TREE_HOST_IMPL_H_ 6 #define CC_LAYER_TREE_HOST_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/time.h" 10 #include "base/time.h"
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 370
371 // List of visible layers for the most recently prepared frame. Used for 371 // List of visible layers for the most recently prepared frame. Used for
372 // rendering and input event hit testing. 372 // rendering and input event hit testing.
373 LayerList m_renderSurfaceLayerList; 373 LayerList m_renderSurfaceLayerList;
374 374
375 PinchZoomViewport m_pinchZoomViewport; 375 PinchZoomViewport m_pinchZoomViewport;
376 376
377 scoped_ptr<FrameRateCounter> m_fpsCounter; 377 scoped_ptr<FrameRateCounter> m_fpsCounter;
378 scoped_ptr<DebugRectHistory> m_debugRectHistory; 378 scoped_ptr<DebugRectHistory> m_debugRectHistory;
379 379
380 size_t m_numImplThreadScrolls; 380 int64 m_numImplThreadScrolls;
381 size_t m_numMainThreadScrolls; 381 int64 m_numMainThreadScrolls;
382 382
383 size_t m_cumulativeNumLayersDrawn; 383 int64 m_cumulativeNumLayersDrawn;
384
385 int64 m_cumulativeNumMissingTiles;
nduca 2012/12/07 01:14:37 any reason using the word missingTiles vs numCheck
384 386
385 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); 387 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl);
386 }; 388 };
387 389
388 } // namespace cc 390 } // namespace cc
389 391
390 #endif // CC_LAYER_TREE_HOST_IMPL_H_ 392 #endif // CC_LAYER_TREE_HOST_IMPL_H_
OLDNEW
« 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