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_LAYER_H_ |
6 #define CC_LAYER_H_ | 6 #define CC_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/cc_export.h" | 13 #include "cc/base/cc_export.h" |
| 14 #include "cc/base/region.h" |
14 #include "cc/draw_properties.h" | 15 #include "cc/draw_properties.h" |
15 #include "cc/layer_animation_controller.h" | 16 #include "cc/layer_animation_controller.h" |
16 #include "cc/layer_animation_event_observer.h" | 17 #include "cc/layer_animation_event_observer.h" |
17 #include "cc/layer_animation_value_observer.h" | 18 #include "cc/layer_animation_value_observer.h" |
18 #include "cc/occlusion_tracker.h" | 19 #include "cc/occlusion_tracker.h" |
19 #include "cc/region.h" | |
20 #include "cc/render_surface.h" | 20 #include "cc/render_surface.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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 WebKit::WebLayerScrollClient* layer_scroll_client_; | 474 WebKit::WebLayerScrollClient* layer_scroll_client_; |
475 | 475 |
476 DrawProperties<Layer, RenderSurface> draw_properties_; | 476 DrawProperties<Layer, RenderSurface> draw_properties_; |
477 | 477 |
478 DISALLOW_COPY_AND_ASSIGN(Layer); | 478 DISALLOW_COPY_AND_ASSIGN(Layer); |
479 }; | 479 }; |
480 | 480 |
481 } // namespace cc | 481 } // namespace cc |
482 | 482 |
483 #endif // CC_LAYER_H_ | 483 #endif // CC_LAYER_H_ |
OLD | NEW |