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_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ |
6 #define CC_TREES_LAYER_TREE_HOST_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_H_ |
7 | 7 |
8 #include <limits> | 8 #include <limits> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
382 LayerTreeHostClient* client_; | 382 LayerTreeHostClient* client_; |
383 scoped_ptr<Proxy> proxy_; | 383 scoped_ptr<Proxy> proxy_; |
384 | 384 |
385 int source_frame_number_; | 385 int source_frame_number_; |
386 scoped_ptr<RenderingStatsInstrumentation> rendering_stats_instrumentation_; | 386 scoped_ptr<RenderingStatsInstrumentation> rendering_stats_instrumentation_; |
387 | 387 |
388 bool output_surface_lost_; | 388 bool output_surface_lost_; |
389 | 389 |
390 scoped_refptr<Layer> root_layer_; | 390 scoped_refptr<Layer> root_layer_; |
391 scoped_refptr<HeadsUpDisplayLayer> hud_layer_; | 391 scoped_refptr<HeadsUpDisplayLayer> hud_layer_; |
| 392 PropertyTrees property_trees_; |
392 | 393 |
393 scoped_ptr<PrioritizedResourceManager> contents_texture_manager_; | 394 scoped_ptr<PrioritizedResourceManager> contents_texture_manager_; |
394 scoped_ptr<PrioritizedResource> surface_memory_placeholder_; | 395 scoped_ptr<PrioritizedResource> surface_memory_placeholder_; |
395 | 396 |
396 base::WeakPtr<InputHandler> input_handler_weak_ptr_; | 397 base::WeakPtr<InputHandler> input_handler_weak_ptr_; |
397 base::WeakPtr<TopControlsManager> top_controls_manager_weak_ptr_; | 398 base::WeakPtr<TopControlsManager> top_controls_manager_weak_ptr_; |
398 | 399 |
399 const LayerTreeSettings settings_; | 400 const LayerTreeSettings settings_; |
400 LayerTreeDebugState debug_state_; | 401 LayerTreeDebugState debug_state_; |
401 | 402 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 454 |
454 uint32_t surface_id_namespace_; | 455 uint32_t surface_id_namespace_; |
455 uint32_t next_surface_sequence_; | 456 uint32_t next_surface_sequence_; |
456 | 457 |
457 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 458 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
458 }; | 459 }; |
459 | 460 |
460 } // namespace cc | 461 } // namespace cc |
461 | 462 |
462 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 463 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
OLD | NEW |