Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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_ |
| OLD | NEW |