| 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_LAYER_H_ | 5 #ifndef CC_LAYER_H_ |
| 6 #define CC_LAYER_H_ | 6 #define CC_LAYER_H_ |
| 7 | 7 |
| 8 #include <public/WebFilterOperations.h> | |
| 9 #include <string> | 8 #include <string> |
| 10 #include <vector> | 9 #include <vector> |
| 11 | 10 |
| 12 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 13 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 14 #include "cc/cc_export.h" | 13 #include "cc/cc_export.h" |
| 15 #include "cc/draw_properties.h" | 14 #include "cc/draw_properties.h" |
| 16 #include "cc/layer_animation_controller.h" | 15 #include "cc/layer_animation_controller.h" |
| 17 #include "cc/layer_animation_observer.h" | 16 #include "cc/layer_animation_observer.h" |
| 18 #include "cc/occlusion_tracker.h" | 17 #include "cc/occlusion_tracker.h" |
| 19 #include "cc/region.h" | 18 #include "cc/region.h" |
| 20 #include "cc/render_surface.h" | 19 #include "cc/render_surface.h" |
| 21 #include "skia/ext/refptr.h" | 20 #include "skia/ext/refptr.h" |
| 21 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations
.h" |
| 22 #include "third_party/skia/include/core/SkColor.h" | 22 #include "third_party/skia/include/core/SkColor.h" |
| 23 #include "third_party/skia/include/core/SkImageFilter.h" | 23 #include "third_party/skia/include/core/SkImageFilter.h" |
| 24 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
| 25 #include "ui/gfx/rect_f.h" | 25 #include "ui/gfx/rect_f.h" |
| 26 #include "ui/gfx/transform.h" | 26 #include "ui/gfx/transform.h" |
| 27 | 27 |
| 28 namespace WebKit { | 28 namespace WebKit { |
| 29 class WebAnimationDelegate; | 29 class WebAnimationDelegate; |
| 30 class WebLayerScrollClient; | 30 class WebLayerScrollClient; |
| 31 } | 31 } |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 WebKit::WebLayerScrollClient* m_layerScrollClient; | 396 WebKit::WebLayerScrollClient* m_layerScrollClient; |
| 397 | 397 |
| 398 DrawProperties<Layer, RenderSurface> m_drawProperties; | 398 DrawProperties<Layer, RenderSurface> m_drawProperties; |
| 399 }; | 399 }; |
| 400 | 400 |
| 401 void sortLayers(std::vector<scoped_refptr<Layer> >::iterator, std::vector<scoped
_refptr<Layer> >::iterator, void*); | 401 void sortLayers(std::vector<scoped_refptr<Layer> >::iterator, std::vector<scoped
_refptr<Layer> >::iterator, void*); |
| 402 | 402 |
| 403 } // namespace cc | 403 } // namespace cc |
| 404 | 404 |
| 405 #endif // CC_LAYER_H_ | 405 #endif // CC_LAYER_H_ |
| OLD | NEW |