Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: cc/trees/layer_tree_host_in_process.h

Issue 2502663003: CC Animation: Move PropertyAnimationState and TargetProperty to trees. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/layers/layer_impl.h ('k') | cc/trees/mutator_host_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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"
24 #include "cc/base/cc_export.h" 23 #include "cc/base/cc_export.h"
25 #include "cc/debug/micro_benchmark.h" 24 #include "cc/debug/micro_benchmark.h"
26 #include "cc/debug/micro_benchmark_controller.h" 25 #include "cc/debug/micro_benchmark_controller.h"
27 #include "cc/input/browser_controls_state.h" 26 #include "cc/input/browser_controls_state.h"
28 #include "cc/input/event_listener_properties.h" 27 #include "cc/input/event_listener_properties.h"
29 #include "cc/input/input_handler.h" 28 #include "cc/input/input_handler.h"
30 #include "cc/input/layer_selection_bound.h" 29 #include "cc/input/layer_selection_bound.h"
31 #include "cc/input/scrollbar.h" 30 #include "cc/input/scrollbar.h"
32 #include "cc/layers/layer_collections.h" 31 #include "cc/layers/layer_collections.h"
33 #include "cc/layers/layer_list_iterator.h" 32 #include "cc/layers/layer_list_iterator.h"
34 #include "cc/output/compositor_frame_sink.h" 33 #include "cc/output/compositor_frame_sink.h"
35 #include "cc/output/swap_promise.h" 34 #include "cc/output/swap_promise.h"
36 #include "cc/resources/resource_format.h" 35 #include "cc/resources/resource_format.h"
37 #include "cc/surfaces/surface_sequence_generator.h" 36 #include "cc/surfaces/surface_sequence_generator.h"
38 #include "cc/trees/compositor_mode.h" 37 #include "cc/trees/compositor_mode.h"
39 #include "cc/trees/layer_tree.h" 38 #include "cc/trees/layer_tree.h"
40 #include "cc/trees/layer_tree_host.h" 39 #include "cc/trees/layer_tree_host.h"
41 #include "cc/trees/layer_tree_host_client.h" 40 #include "cc/trees/layer_tree_host_client.h"
42 #include "cc/trees/layer_tree_settings.h" 41 #include "cc/trees/layer_tree_settings.h"
43 #include "cc/trees/proxy.h" 42 #include "cc/trees/proxy.h"
44 #include "cc/trees/swap_promise_manager.h" 43 #include "cc/trees/swap_promise_manager.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; 50 class BeginFrameSource;
51 class ClientPictureCache; 51 class ClientPictureCache;
52 class EnginePictureCache; 52 class EnginePictureCache;
53 class HeadsUpDisplayLayer; 53 class HeadsUpDisplayLayer;
54 class ImageSerializationProcessor; 54 class ImageSerializationProcessor;
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 // TODO(khushalsagar): Investigate removing this after SPV2, since then we 322 // TODO(khushalsagar): Investigate removing this after SPV2, since then we
323 // should get these PropertyTrees directly from blink? 323 // should get these PropertyTrees directly from blink?
324 std::unique_ptr<ReflectedMainFrameState> reflected_main_frame_state_; 324 std::unique_ptr<ReflectedMainFrameState> reflected_main_frame_state_;
325 325
326 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostInProcess); 326 DISALLOW_COPY_AND_ASSIGN(LayerTreeHostInProcess);
327 }; 327 };
328 328
329 } // namespace cc 329 } // namespace cc
330 330
331 #endif // CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_ 331 #endif // CC_TREES_LAYER_TREE_HOST_IN_PROCESS_H_
OLDNEW
« no previous file with comments | « cc/layers/layer_impl.h ('k') | cc/trees/mutator_host_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698