| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "cc/animation/target_property.h" | 23 #include "cc/animation/target_property.h" |
| 24 #include "cc/base/cc_export.h" | 24 #include "cc/base/cc_export.h" |
| 25 #include "cc/debug/frame_timing_tracker.h" | 25 #include "cc/debug/frame_timing_tracker.h" |
| 26 #include "cc/debug/micro_benchmark.h" | 26 #include "cc/debug/micro_benchmark.h" |
| 27 #include "cc/debug/micro_benchmark_controller.h" | 27 #include "cc/debug/micro_benchmark_controller.h" |
| 28 #include "cc/input/event_listener_properties.h" | 28 #include "cc/input/event_listener_properties.h" |
| 29 #include "cc/input/input_handler.h" | 29 #include "cc/input/input_handler.h" |
| 30 #include "cc/input/layer_selection_bound.h" | 30 #include "cc/input/layer_selection_bound.h" |
| 31 #include "cc/input/scrollbar.h" | 31 #include "cc/input/scrollbar.h" |
| 32 #include "cc/input/top_controls_state.h" | 32 #include "cc/input/top_controls_state.h" |
| 33 #include "cc/layers/layer_lists.h" | 33 #include "cc/layers/layer_collections.h" |
| 34 #include "cc/output/output_surface.h" | 34 #include "cc/output/output_surface.h" |
| 35 #include "cc/output/renderer_capabilities.h" | 35 #include "cc/output/renderer_capabilities.h" |
| 36 #include "cc/output/swap_promise.h" | 36 #include "cc/output/swap_promise.h" |
| 37 #include "cc/resources/resource_format.h" | 37 #include "cc/resources/resource_format.h" |
| 38 #include "cc/resources/scoped_ui_resource.h" | 38 #include "cc/resources/scoped_ui_resource.h" |
| 39 #include "cc/surfaces/surface_sequence.h" | 39 #include "cc/surfaces/surface_sequence.h" |
| 40 #include "cc/trees/compositor_mode.h" | 40 #include "cc/trees/compositor_mode.h" |
| 41 #include "cc/trees/layer_tree_host_client.h" | 41 #include "cc/trees/layer_tree_host_client.h" |
| 42 #include "cc/trees/layer_tree_host_common.h" | 42 #include "cc/trees/layer_tree_host_common.h" |
| 43 #include "cc/trees/layer_tree_settings.h" | 43 #include "cc/trees/layer_tree_settings.h" |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 | 591 |
| 592 uint32_t surface_id_namespace_; | 592 uint32_t surface_id_namespace_; |
| 593 uint32_t next_surface_sequence_; | 593 uint32_t next_surface_sequence_; |
| 594 | 594 |
| 595 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 595 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 596 }; | 596 }; |
| 597 | 597 |
| 598 } // namespace cc | 598 } // namespace cc |
| 599 | 599 |
| 600 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 600 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |