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_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 |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "cc/layers/layer_collections.h" | 27 #include "cc/layers/layer_collections.h" |
28 #include "cc/layers/layer_impl_test_properties.h" | 28 #include "cc/layers/layer_impl_test_properties.h" |
29 #include "cc/layers/layer_position_constraint.h" | 29 #include "cc/layers/layer_position_constraint.h" |
30 #include "cc/layers/performance_properties.h" | 30 #include "cc/layers/performance_properties.h" |
31 #include "cc/layers/render_surface_impl.h" | 31 #include "cc/layers/render_surface_impl.h" |
32 #include "cc/output/filter_operations.h" | 32 #include "cc/output/filter_operations.h" |
33 #include "cc/quads/shared_quad_state.h" | 33 #include "cc/quads/shared_quad_state.h" |
34 #include "cc/resources/resource_provider.h" | 34 #include "cc/resources/resource_provider.h" |
35 #include "cc/tiles/tile_priority.h" | 35 #include "cc/tiles/tile_priority.h" |
36 #include "third_party/skia/include/core/SkColor.h" | 36 #include "third_party/skia/include/core/SkColor.h" |
37 #include "third_party/skia/include/core/SkImageFilter.h" | 37 #include "third_party/skia/include/core/SkXfermode.h" |
38 #include "ui/gfx/geometry/point3_f.h" | 38 #include "ui/gfx/geometry/point3_f.h" |
39 #include "ui/gfx/geometry/rect.h" | 39 #include "ui/gfx/geometry/rect.h" |
40 #include "ui/gfx/geometry/rect_f.h" | 40 #include "ui/gfx/geometry/rect_f.h" |
41 #include "ui/gfx/geometry/scroll_offset.h" | 41 #include "ui/gfx/geometry/scroll_offset.h" |
42 #include "ui/gfx/transform.h" | 42 #include "ui/gfx/transform.h" |
43 | 43 |
44 namespace base { | 44 namespace base { |
45 namespace trace_event { | 45 namespace trace_event { |
46 class ConvertableToTraceFormat; | 46 class ConvertableToTraceFormat; |
47 class TracedValue; | 47 class TracedValue; |
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 bool scrolls_drawn_descendant_; | 663 bool scrolls_drawn_descendant_; |
664 // If true, the layer or one of its descendants has a touch handler. | 664 // If true, the layer or one of its descendants has a touch handler. |
665 bool layer_or_descendant_has_touch_handler_; | 665 bool layer_or_descendant_has_touch_handler_; |
666 | 666 |
667 DISALLOW_COPY_AND_ASSIGN(LayerImpl); | 667 DISALLOW_COPY_AND_ASSIGN(LayerImpl); |
668 }; | 668 }; |
669 | 669 |
670 } // namespace cc | 670 } // namespace cc |
671 | 671 |
672 #endif // CC_LAYERS_LAYER_IMPL_H_ | 672 #endif // CC_LAYERS_LAYER_IMPL_H_ |
OLD | NEW |