OLD | NEW |
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_LAYER_IMPL_H_ | 5 #ifndef CC_LAYER_IMPL_H_ |
6 #define CC_LAYER_IMPL_H_ | 6 #define CC_LAYER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "cc/cc_export.h" | 13 #include "cc/base/cc_export.h" |
| 14 #include "cc/base/region.h" |
| 15 #include "cc/base/scoped_ptr_vector.h" |
14 #include "cc/draw_properties.h" | 16 #include "cc/draw_properties.h" |
15 #include "cc/input_handler.h" | 17 #include "cc/input_handler.h" |
16 #include "cc/layer_animation_controller.h" | 18 #include "cc/layer_animation_controller.h" |
17 #include "cc/layer_animation_value_observer.h" | 19 #include "cc/layer_animation_value_observer.h" |
18 #include "cc/region.h" | |
19 #include "cc/render_pass.h" | 20 #include "cc/render_pass.h" |
20 #include "cc/render_surface_impl.h" | 21 #include "cc/render_surface_impl.h" |
21 #include "cc/resource_provider.h" | 22 #include "cc/resource_provider.h" |
22 #include "cc/scoped_ptr_vector.h" | |
23 #include "cc/shared_quad_state.h" | 23 #include "cc/shared_quad_state.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/Source/Platform/chromium/public/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 "third_party/skia/include/core/SkPicture.h" | 28 #include "third_party/skia/include/core/SkPicture.h" |
29 #include "ui/gfx/rect.h" | 29 #include "ui/gfx/rect.h" |
30 #include "ui/gfx/rect_f.h" | 30 #include "ui/gfx/rect_f.h" |
31 #include "ui/gfx/transform.h" | 31 #include "ui/gfx/transform.h" |
32 | 32 |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 // Group of properties that need to be computed based on the layer tree | 517 // Group of properties that need to be computed based on the layer tree |
518 // hierarchy before layers can be drawn. | 518 // hierarchy before layers can be drawn. |
519 DrawProperties<LayerImpl, RenderSurfaceImpl> draw_properties_; | 519 DrawProperties<LayerImpl, RenderSurfaceImpl> draw_properties_; |
520 | 520 |
521 DISALLOW_COPY_AND_ASSIGN(LayerImpl); | 521 DISALLOW_COPY_AND_ASSIGN(LayerImpl); |
522 }; | 522 }; |
523 | 523 |
524 } | 524 } |
525 | 525 |
526 #endif // CC_LAYER_IMPL_H_ | 526 #endif // CC_LAYER_IMPL_H_ |
OLD | NEW |