| 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_IN_PROCESS_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "cc/trees/layer_tree_host_client.h" | 40 #include "cc/trees/layer_tree_host_client.h" |
| 41 #include "cc/trees/layer_tree_settings.h" | 41 #include "cc/trees/layer_tree_settings.h" |
| 42 #include "cc/trees/proxy.h" | 42 #include "cc/trees/proxy.h" |
| 43 #include "cc/trees/swap_promise_manager.h" | 43 #include "cc/trees/swap_promise_manager.h" |
| 44 #include "cc/trees/target_property.h" | 44 #include "cc/trees/target_property.h" |
| 45 #include "third_party/skia/include/core/SkColor.h" | 45 #include "third_party/skia/include/core/SkColor.h" |
| 46 #include "ui/gfx/geometry/rect.h" | 46 #include "ui/gfx/geometry/rect.h" |
| 47 | 47 |
| 48 namespace cc { | 48 namespace cc { |
| 49 class MutatorEvents; | 49 class MutatorEvents; |
| 50 class BeginFrameSource; | |
| 51 class ClientPictureCache; | 50 class ClientPictureCache; |
| 52 class EnginePictureCache; | 51 class EnginePictureCache; |
| 53 class HeadsUpDisplayLayer; | |
| 54 class ImageSerializationProcessor; | 52 class ImageSerializationProcessor; |
| 55 class Layer; | 53 class Layer; |
| 56 class LayerTreeHostClient; | 54 class LayerTreeHostClient; |
| 57 class LayerTreeHostImpl; | 55 class LayerTreeHostImpl; |
| 58 class LayerTreeHostImplClient; | 56 class LayerTreeHostImplClient; |
| 59 class LayerTreeHostSingleThreadClient; | 57 class LayerTreeHostSingleThreadClient; |
| 60 class LayerTreeMutator; | 58 class LayerTreeMutator; |
| 61 class MutatorHost; | 59 class MutatorHost; |
| 62 class PropertyTrees; | 60 class PropertyTrees; |
| 63 class Region; | |
| 64 class RenderingStatsInstrumentation; | 61 class RenderingStatsInstrumentation; |
| 65 class ResourceProvider; | |
| 66 class ResourceUpdateQueue; | |
| 67 class TaskGraphRunner; | 62 class TaskGraphRunner; |
| 68 struct PendingPageScaleAnimation; | |
| 69 struct ReflectedMainFrameState; | 63 struct ReflectedMainFrameState; |
| 70 struct RenderingStats; | 64 struct RenderingStats; |
| 71 struct ScrollAndScaleSet; | 65 struct ScrollAndScaleSet; |
| 72 | 66 |
| 73 class CC_EXPORT LayerTreeHostInProcess : public LayerTreeHost { | 67 class CC_EXPORT LayerTreeHostInProcess : public LayerTreeHost { |
| 74 public: | 68 public: |
| 75 // TODO(sad): InitParams should be a movable type so that it can be | 69 // TODO(sad): InitParams should be a movable type so that it can be |
| 76 // std::move()d to the Create* functions. | 70 // std::move()d to the Create* functions. |
| 77 struct CC_EXPORT InitParams { | 71 struct CC_EXPORT InitParams { |
| 78 LayerTreeHostClient* client = nullptr; | 72 LayerTreeHostClient* client = nullptr; |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 // TODO(khushalsagar): Investigate removing this after SPV2, since then we | 316 // TODO(khushalsagar): Investigate removing this after SPV2, since then we |
| 323 // should get these PropertyTrees directly from blink? | 317 // should get these PropertyTrees directly from blink? |
| 324 std::unique_ptr<ReflectedMainFrameState> reflected_main_frame_state_; | 318 std::unique_ptr<ReflectedMainFrameState> reflected_main_frame_state_; |
| 325 | 319 |
| 326 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostInProcess); | 320 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostInProcess); |
| 327 }; | 321 }; |
| 328 | 322 |
| 329 } // namespace cc | 323 } // namespace cc |
| 330 | 324 |
| 331 #endif // CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ | 325 #endif // CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ |
| OLD | NEW |