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

Side by Side Diff: cc/layers/layer_impl.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.h ('k') | cc/trees/layer_tree_host_in_process.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_LAYERS_LAYER_IMPL_H_ 5 #ifndef CC_LAYERS_LAYER_IMPL_H_
6 #define CC_LAYERS_LAYER_IMPL_H_ 6 #define CC_LAYERS_LAYER_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <map> 11 #include <map>
12 #include <memory> 12 #include <memory>
13 #include <set> 13 #include <set>
14 #include <string> 14 #include <string>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "base/memory/ptr_util.h" 19 #include "base/memory/ptr_util.h"
20 #include "base/values.h" 20 #include "base/values.h"
21 #include "cc/animation/target_property.h"
22 #include "cc/base/cc_export.h" 21 #include "cc/base/cc_export.h"
23 #include "cc/base/region.h" 22 #include "cc/base/region.h"
24 #include "cc/base/synced_property.h" 23 #include "cc/base/synced_property.h"
25 #include "cc/input/input_handler.h" 24 #include "cc/input/input_handler.h"
26 #include "cc/layers/draw_properties.h" 25 #include "cc/layers/draw_properties.h"
27 #include "cc/layers/layer_collections.h" 26 #include "cc/layers/layer_collections.h"
28 #include "cc/layers/layer_impl_test_properties.h" 27 #include "cc/layers/layer_impl_test_properties.h"
29 #include "cc/layers/layer_position_constraint.h" 28 #include "cc/layers/layer_position_constraint.h"
30 #include "cc/layers/performance_properties.h" 29 #include "cc/layers/performance_properties.h"
31 #include "cc/layers/render_surface_impl.h" 30 #include "cc/layers/render_surface_impl.h"
32 #include "cc/quads/shared_quad_state.h" 31 #include "cc/quads/shared_quad_state.h"
33 #include "cc/resources/resource_provider.h" 32 #include "cc/resources/resource_provider.h"
34 #include "cc/tiles/tile_priority.h" 33 #include "cc/tiles/tile_priority.h"
35 #include "cc/trees/element_id.h" 34 #include "cc/trees/element_id.h"
36 #include "cc/trees/mutator_host_client.h" 35 #include "cc/trees/mutator_host_client.h"
36 #include "cc/trees/target_property.h"
37 #include "third_party/skia/include/core/SkColor.h" 37 #include "third_party/skia/include/core/SkColor.h"
38 #include "third_party/skia/include/core/SkXfermode.h" 38 #include "third_party/skia/include/core/SkXfermode.h"
39 #include "ui/gfx/geometry/point3_f.h" 39 #include "ui/gfx/geometry/point3_f.h"
40 #include "ui/gfx/geometry/rect.h" 40 #include "ui/gfx/geometry/rect.h"
41 #include "ui/gfx/geometry/rect_f.h" 41 #include "ui/gfx/geometry/rect_f.h"
42 #include "ui/gfx/geometry/scroll_offset.h" 42 #include "ui/gfx/geometry/scroll_offset.h"
43 #include "ui/gfx/transform.h" 43 #include "ui/gfx/transform.h"
44 44
45 namespace base { 45 namespace base {
46 namespace trace_event { 46 namespace trace_event {
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 bool has_will_change_transform_hint_ : 1; 584 bool has_will_change_transform_hint_ : 1;
585 bool needs_push_properties_ : 1; 585 bool needs_push_properties_ : 1;
586 bool scrollbars_hidden_ : 1; 586 bool scrollbars_hidden_ : 1;
587 587
588 DISALLOW_COPY_AND_ASSIGN(LayerImpl); 588 DISALLOW_COPY_AND_ASSIGN(LayerImpl);
589 }; 589 };
590 590
591 } // namespace cc 591 } // namespace cc
592 592
593 #endif // CC_LAYERS_LAYER_IMPL_H_ 593 #endif // CC_LAYERS_LAYER_IMPL_H_
OLDNEW
« no previous file with comments | « cc/layers/layer.h ('k') | cc/trees/layer_tree_host_in_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698