| 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_TREES_LAYER_TREE_HOST_IMPL_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 virtual ~FrameData(); | 130 virtual ~FrameData(); |
| 131 | 131 |
| 132 std::vector<gfx::Rect> occluding_screen_space_rects; | 132 std::vector<gfx::Rect> occluding_screen_space_rects; |
| 133 std::vector<gfx::Rect> non_occluding_screen_space_rects; | 133 std::vector<gfx::Rect> non_occluding_screen_space_rects; |
| 134 RenderPassList render_passes; | 134 RenderPassList render_passes; |
| 135 RenderPassIdHashMap render_passes_by_id; | 135 RenderPassIdHashMap render_passes_by_id; |
| 136 const LayerImplList* render_surface_layer_list; | 136 const LayerImplList* render_surface_layer_list; |
| 137 LayerImplList will_draw_layers; | 137 LayerImplList will_draw_layers; |
| 138 bool contains_incomplete_tile; | 138 bool contains_incomplete_tile; |
| 139 bool has_no_damage; | 139 bool has_no_damage; |
| 140 bool cannot_append_tile_draw_quads; |
| 140 LatencyInfo latency_info; | 141 LatencyInfo latency_info; |
| 141 | 142 |
| 142 // RenderPassSink implementation. | 143 // RenderPassSink implementation. |
| 143 virtual void AppendRenderPass(scoped_ptr<RenderPass> render_pass) OVERRIDE; | 144 virtual void AppendRenderPass(scoped_ptr<RenderPass> render_pass) OVERRIDE; |
| 144 }; | 145 }; |
| 145 | 146 |
| 146 virtual void BeginCommit(); | 147 virtual void BeginCommit(); |
| 147 virtual void CommitComplete(); | 148 virtual void CommitComplete(); |
| 148 virtual void Animate(base::TimeTicks monotonic_time, | 149 virtual void Animate(base::TimeTicks monotonic_time, |
| 149 base::Time wall_clock_time); | 150 base::Time wall_clock_time); |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 scoped_ptr<AnimationRegistrar> animation_registrar_; | 475 scoped_ptr<AnimationRegistrar> animation_registrar_; |
| 475 | 476 |
| 476 RenderingStatsInstrumentation* rendering_stats_instrumentation_; | 477 RenderingStatsInstrumentation* rendering_stats_instrumentation_; |
| 477 | 478 |
| 478 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); | 479 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostImpl); |
| 479 }; | 480 }; |
| 480 | 481 |
| 481 } // namespace cc | 482 } // namespace cc |
| 482 | 483 |
| 483 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ | 484 #endif // CC_TREES_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |