| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "cc/layers/layer_lists.h" | 24 #include "cc/layers/layer_lists.h" |
| 25 #include "cc/layers/layer_position_constraint.h" | 25 #include "cc/layers/layer_position_constraint.h" |
| 26 #include "cc/layers/render_surface_impl.h" | 26 #include "cc/layers/render_surface_impl.h" |
| 27 #include "cc/output/filter_operations.h" | 27 #include "cc/output/filter_operations.h" |
| 28 #include "cc/quads/shared_quad_state.h" | 28 #include "cc/quads/shared_quad_state.h" |
| 29 #include "cc/resources/resource_provider.h" | 29 #include "cc/resources/resource_provider.h" |
| 30 #include "skia/ext/refptr.h" | 30 #include "skia/ext/refptr.h" |
| 31 #include "third_party/skia/include/core/SkColor.h" | 31 #include "third_party/skia/include/core/SkColor.h" |
| 32 #include "third_party/skia/include/core/SkImageFilter.h" | 32 #include "third_party/skia/include/core/SkImageFilter.h" |
| 33 #include "third_party/skia/include/core/SkPicture.h" | 33 #include "third_party/skia/include/core/SkPicture.h" |
| 34 #include "ui/gfx/geometry/point3_f.h" |
| 35 #include "ui/gfx/geometry/rect.h" |
| 36 #include "ui/gfx/geometry/rect_f.h" |
| 34 #include "ui/gfx/geometry/scroll_offset.h" | 37 #include "ui/gfx/geometry/scroll_offset.h" |
| 35 #include "ui/gfx/point3_f.h" | |
| 36 #include "ui/gfx/rect.h" | |
| 37 #include "ui/gfx/rect_f.h" | |
| 38 #include "ui/gfx/transform.h" | 38 #include "ui/gfx/transform.h" |
| 39 | 39 |
| 40 namespace base { | 40 namespace base { |
| 41 namespace debug { | 41 namespace debug { |
| 42 class ConvertableToTraceFormat; | 42 class ConvertableToTraceFormat; |
| 43 class TracedValue; | 43 class TracedValue; |
| 44 } | 44 } |
| 45 | 45 |
| 46 class DictionaryValue; | 46 class DictionaryValue; |
| 47 } | 47 } |
| (...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 DrawProperties<LayerImpl> draw_properties_; | 717 DrawProperties<LayerImpl> draw_properties_; |
| 718 | 718 |
| 719 scoped_refptr<base::debug::ConvertableToTraceFormat> debug_info_; | 719 scoped_refptr<base::debug::ConvertableToTraceFormat> debug_info_; |
| 720 | 720 |
| 721 DISALLOW_COPY_AND_ASSIGN(LayerImpl); | 721 DISALLOW_COPY_AND_ASSIGN(LayerImpl); |
| 722 }; | 722 }; |
| 723 | 723 |
| 724 } // namespace cc | 724 } // namespace cc |
| 725 | 725 |
| 726 #endif // CC_LAYERS_LAYER_IMPL_H_ | 726 #endif // CC_LAYERS_LAYER_IMPL_H_ |
| OLD | NEW |