| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "cc/layers/layer_lists.h" | 22 #include "cc/layers/layer_lists.h" |
| 23 #include "cc/layers/layer_position_constraint.h" | 23 #include "cc/layers/layer_position_constraint.h" |
| 24 #include "cc/layers/paint_properties.h" | 24 #include "cc/layers/paint_properties.h" |
| 25 #include "cc/layers/render_surface.h" | 25 #include "cc/layers/render_surface.h" |
| 26 #include "cc/output/filter_operations.h" | 26 #include "cc/output/filter_operations.h" |
| 27 #include "skia/ext/refptr.h" | 27 #include "skia/ext/refptr.h" |
| 28 #include "third_party/skia/include/core/SkColor.h" | 28 #include "third_party/skia/include/core/SkColor.h" |
| 29 #include "third_party/skia/include/core/SkImageFilter.h" | 29 #include "third_party/skia/include/core/SkImageFilter.h" |
| 30 #include "third_party/skia/include/core/SkPicture.h" | 30 #include "third_party/skia/include/core/SkPicture.h" |
| 31 #include "third_party/skia/include/core/SkXfermode.h" | 31 #include "third_party/skia/include/core/SkXfermode.h" |
| 32 #include "ui/gfx/geometry/point3_f.h" |
| 33 #include "ui/gfx/geometry/rect.h" |
| 34 #include "ui/gfx/geometry/rect_f.h" |
| 32 #include "ui/gfx/geometry/scroll_offset.h" | 35 #include "ui/gfx/geometry/scroll_offset.h" |
| 33 #include "ui/gfx/point3_f.h" | |
| 34 #include "ui/gfx/rect.h" | |
| 35 #include "ui/gfx/rect_f.h" | |
| 36 #include "ui/gfx/transform.h" | 36 #include "ui/gfx/transform.h" |
| 37 | 37 |
| 38 namespace gfx { | 38 namespace gfx { |
| 39 class BoxF; | 39 class BoxF; |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace base { | 42 namespace base { |
| 43 namespace debug { | 43 namespace debug { |
| 44 class ConvertableToTraceFormat; | 44 class ConvertableToTraceFormat; |
| 45 } | 45 } |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 640 DrawProperties<Layer> draw_properties_; | 640 DrawProperties<Layer> draw_properties_; |
| 641 | 641 |
| 642 PaintProperties paint_properties_; | 642 PaintProperties paint_properties_; |
| 643 | 643 |
| 644 DISALLOW_COPY_AND_ASSIGN(Layer); | 644 DISALLOW_COPY_AND_ASSIGN(Layer); |
| 645 }; | 645 }; |
| 646 | 646 |
| 647 } // namespace cc | 647 } // namespace cc |
| 648 | 648 |
| 649 #endif // CC_LAYERS_LAYER_H_ | 649 #endif // CC_LAYERS_LAYER_H_ |
| OLD | NEW |