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_LAYER_H_ | 5 #ifndef CC_LAYERS_LAYER_H_ |
6 #define CC_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/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "cc/animation/layer_animation_controller.h" | 13 #include "cc/animation/layer_animation_controller.h" |
14 #include "cc/animation/layer_animation_event_observer.h" | 14 #include "cc/animation/layer_animation_event_observer.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/draw_properties.h" | 18 #include "cc/layers/draw_properties.h" |
19 #include "cc/render_surface.h" | 19 #include "cc/layers/render_surface.h" |
20 #include "cc/trees/occlusion_tracker.h" | 20 #include "cc/trees/occlusion_tracker.h" |
21 #include "skia/ext/refptr.h" | 21 #include "skia/ext/refptr.h" |
22 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations
.h" | 22 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations
.h" |
23 #include "third_party/skia/include/core/SkColor.h" | 23 #include "third_party/skia/include/core/SkColor.h" |
24 #include "third_party/skia/include/core/SkImageFilter.h" | 24 #include "third_party/skia/include/core/SkImageFilter.h" |
25 #include "ui/gfx/rect.h" | 25 #include "ui/gfx/rect.h" |
26 #include "ui/gfx/rect_f.h" | 26 #include "ui/gfx/rect_f.h" |
27 #include "ui/gfx/transform.h" | 27 #include "ui/gfx/transform.h" |
28 | 28 |
29 namespace WebKit { | 29 namespace WebKit { |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 WebKit::WebAnimationDelegate* layer_animation_delegate_; | 478 WebKit::WebAnimationDelegate* layer_animation_delegate_; |
479 WebKit::WebLayerScrollClient* layer_scroll_client_; | 479 WebKit::WebLayerScrollClient* layer_scroll_client_; |
480 | 480 |
481 DrawProperties<Layer, RenderSurface> draw_properties_; | 481 DrawProperties<Layer, RenderSurface> draw_properties_; |
482 | 482 |
483 DISALLOW_COPY_AND_ASSIGN(Layer); | 483 DISALLOW_COPY_AND_ASSIGN(Layer); |
484 }; | 484 }; |
485 | 485 |
486 } // namespace cc | 486 } // namespace cc |
487 | 487 |
488 #endif // CC_LAYER_H_ | 488 #endif // CC_LAYERS_LAYER_H_ |
OLD | NEW |