| 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/point3_f.h" | 32 #include "ui/gfx/geometry/point3_f.h" |
| 33 #include "ui/gfx/rect.h" | 33 #include "ui/gfx/rect.h" |
| 34 #include "ui/gfx/rect_f.h" | 34 #include "ui/gfx/rect_f.h" |
| 35 #include "ui/gfx/transform.h" | 35 #include "ui/gfx/transform.h" |
| 36 | 36 |
| 37 namespace gfx { | 37 namespace gfx { |
| 38 class BoxF; | 38 class BoxF; |
| 39 } | 39 } |
| 40 | 40 |
| 41 namespace base { | 41 namespace base { |
| 42 namespace debug { | 42 namespace debug { |
| (...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 DrawProperties<Layer> draw_properties_; | 629 DrawProperties<Layer> draw_properties_; |
| 630 | 630 |
| 631 PaintProperties paint_properties_; | 631 PaintProperties paint_properties_; |
| 632 | 632 |
| 633 DISALLOW_COPY_AND_ASSIGN(Layer); | 633 DISALLOW_COPY_AND_ASSIGN(Layer); |
| 634 }; | 634 }; |
| 635 | 635 |
| 636 } // namespace cc | 636 } // namespace cc |
| 637 | 637 |
| 638 #endif // CC_LAYERS_LAYER_H_ | 638 #endif // CC_LAYERS_LAYER_H_ |
| OLD | NEW |