| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 SVGShapePainter_h | 5 #ifndef SVGShapePainter_h |
| 6 #define SVGShapePainter_h | 6 #define SVGShapePainter_h |
| 7 | 7 |
| 8 #include "platform/graphics/paint/PaintFlags.h" | 8 #include "platform/graphics/paint/PaintFlags.h" |
| 9 #include "platform/wtf/Allocator.h" |
| 9 #include "third_party/skia/include/core/SkPath.h" | 10 #include "third_party/skia/include/core/SkPath.h" |
| 10 #include "wtf/Allocator.h" | |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class FloatRect; | 14 class FloatRect; |
| 15 class GraphicsContext; | 15 class GraphicsContext; |
| 16 class LayoutSVGResourceMarker; | 16 class LayoutSVGResourceMarker; |
| 17 class LayoutSVGShape; | 17 class LayoutSVGShape; |
| 18 struct MarkerPosition; | 18 struct MarkerPosition; |
| 19 struct PaintInfo; | 19 struct PaintInfo; |
| 20 | 20 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 36 const LayoutSVGResourceMarker&, | 36 const LayoutSVGResourceMarker&, |
| 37 const MarkerPosition&, | 37 const MarkerPosition&, |
| 38 float stroke_width); | 38 float stroke_width); |
| 39 | 39 |
| 40 const LayoutSVGShape& layout_svg_shape_; | 40 const LayoutSVGShape& layout_svg_shape_; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace blink | 43 } // namespace blink |
| 44 | 44 |
| 45 #endif // SVGShapePainter_h | 45 #endif // SVGShapePainter_h |
| OLD | NEW |