| 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 |
| 11 #include <limits> | 11 #include <limits> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <set> | 13 #include <set> |
| 14 #include <string> | 14 #include <string> |
| 15 #include <unordered_map> | 15 #include <unordered_map> |
| 16 #include <vector> | 16 #include <vector> |
| 17 | 17 |
| 18 #include "base/cancelable_callback.h" | 18 #include "base/cancelable_callback.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "base/memory/ref_counted.h" | 20 #include "base/memory/ref_counted.h" |
| 21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
| 22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
| 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/blimp/client_picture_cache.h" | |
| 26 #include "cc/blimp/engine_picture_cache.h" | |
| 27 #include "cc/debug/micro_benchmark.h" | 25 #include "cc/debug/micro_benchmark.h" |
| 28 #include "cc/debug/micro_benchmark_controller.h" | 26 #include "cc/debug/micro_benchmark_controller.h" |
| 29 #include "cc/input/event_listener_properties.h" | 27 #include "cc/input/event_listener_properties.h" |
| 30 #include "cc/input/input_handler.h" | 28 #include "cc/input/input_handler.h" |
| 31 #include "cc/input/layer_selection_bound.h" | 29 #include "cc/input/layer_selection_bound.h" |
| 32 #include "cc/input/scrollbar.h" | 30 #include "cc/input/scrollbar.h" |
| 33 #include "cc/input/top_controls_state.h" | 31 #include "cc/input/top_controls_state.h" |
| 34 #include "cc/layers/layer_collections.h" | 32 #include "cc/layers/layer_collections.h" |
| 35 #include "cc/layers/layer_list_iterator.h" | 33 #include "cc/layers/layer_list_iterator.h" |
| 36 #include "cc/output/output_surface.h" | 34 #include "cc/output/output_surface.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 49 | 47 |
| 50 namespace gpu { | 48 namespace gpu { |
| 51 class GpuMemoryBufferManager; | 49 class GpuMemoryBufferManager; |
| 52 } | 50 } |
| 53 | 51 |
| 54 namespace cc { | 52 namespace cc { |
| 55 | 53 |
| 56 class AnimationEvents; | 54 class AnimationEvents; |
| 57 class AnimationHost; | 55 class AnimationHost; |
| 58 class BeginFrameSource; | 56 class BeginFrameSource; |
| 57 class ClientPictureCache; |
| 58 class EnginePictureCache; |
| 59 class HeadsUpDisplayLayer; | 59 class HeadsUpDisplayLayer; |
| 60 class ImageSerializationProcessor; | 60 class ImageSerializationProcessor; |
| 61 class Layer; | 61 class Layer; |
| 62 class LayerTreeHostImpl; | 62 class LayerTreeHostImpl; |
| 63 class LayerTreeHostImplClient; | 63 class LayerTreeHostImplClient; |
| 64 class LayerTreeHostSingleThreadClient; | 64 class LayerTreeHostSingleThreadClient; |
| 65 class LayerTreeMutator; | 65 class LayerTreeMutator; |
| 66 class PropertyTrees; | 66 class PropertyTrees; |
| 67 class Region; | 67 class Region; |
| 68 class RemoteProtoChannel; | 68 class RemoteProtoChannel; |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 uint32_t surface_client_id_; | 432 uint32_t surface_client_id_; |
| 433 uint32_t next_surface_sequence_; | 433 uint32_t next_surface_sequence_; |
| 434 uint32_t num_consecutive_frames_suitable_for_gpu_ = 0; | 434 uint32_t num_consecutive_frames_suitable_for_gpu_ = 0; |
| 435 | 435 |
| 436 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 436 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 437 }; | 437 }; |
| 438 | 438 |
| 439 } // namespace cc | 439 } // namespace cc |
| 440 | 440 |
| 441 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 441 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |