OLD | NEW |
1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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_H_ | 5 #ifndef CC_LAYERS_LAYER_H_ |
6 #define CC_LAYERS_LAYER_H_ | 6 #define CC_LAYERS_LAYER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "cc/animation/layer_animation_controller.h" | 14 #include "cc/animation/layer_animation_controller.h" |
15 #include "cc/animation/layer_animation_value_observer.h" | 15 #include "cc/animation/layer_animation_value_observer.h" |
16 #include "cc/base/cc_export.h" | 16 #include "cc/base/cc_export.h" |
17 #include "cc/base/region.h" | 17 #include "cc/base/region.h" |
18 #include "cc/layers/draw_properties.h" | 18 #include "cc/layers/draw_properties.h" |
19 #include "cc/layers/layer_lists.h" | 19 #include "cc/layers/layer_lists.h" |
20 #include "cc/layers/layer_position_constraint.h" | 20 #include "cc/layers/layer_position_constraint.h" |
21 #include "cc/layers/paint_properties.h" | 21 #include "cc/layers/paint_properties.h" |
22 #include "cc/layers/render_surface.h" | 22 #include "cc/layers/render_surface.h" |
23 #include "cc/trees/occlusion_tracker.h" | 23 #include "cc/trees/occlusion_tracker.h" |
24 #include "skia/ext/refptr.h" | 24 #include "skia/ext/refptr.h" |
25 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations
.h" | 25 #include "third_party/WebKit/public/platform/WebFilterOperations.h" |
26 #include "third_party/skia/include/core/SkColor.h" | 26 #include "third_party/skia/include/core/SkColor.h" |
27 #include "third_party/skia/include/core/SkImageFilter.h" | 27 #include "third_party/skia/include/core/SkImageFilter.h" |
28 #include "ui/gfx/rect.h" | 28 #include "ui/gfx/rect.h" |
29 #include "ui/gfx/rect_f.h" | 29 #include "ui/gfx/rect_f.h" |
30 #include "ui/gfx/transform.h" | 30 #include "ui/gfx/transform.h" |
31 | 31 |
32 namespace WebKit { | 32 namespace WebKit { |
33 class WebAnimationDelegate; | 33 class WebAnimationDelegate; |
34 class WebLayerScrollClient; | 34 class WebLayerScrollClient; |
35 } | 35 } |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 DrawProperties<Layer, RenderSurface> draw_properties_; | 484 DrawProperties<Layer, RenderSurface> draw_properties_; |
485 | 485 |
486 PaintProperties paint_properties_; | 486 PaintProperties paint_properties_; |
487 | 487 |
488 DISALLOW_COPY_AND_ASSIGN(Layer); | 488 DISALLOW_COPY_AND_ASSIGN(Layer); |
489 }; | 489 }; |
490 | 490 |
491 } // namespace cc | 491 } // namespace cc |
492 | 492 |
493 #endif // CC_LAYERS_LAYER_H_ | 493 #endif // CC_LAYERS_LAYER_H_ |
OLD | NEW |