| 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 class SkPaint; |
| 9 |
| 8 namespace blink { | 10 namespace blink { |
| 9 | 11 |
| 10 struct MarkerPosition; | 12 struct MarkerPosition; |
| 11 struct PaintInfo; | 13 struct PaintInfo; |
| 12 class FloatPoint; | 14 class FloatPoint; |
| 13 class GraphicsContext; | 15 class GraphicsContext; |
| 14 class Path; | |
| 15 class LayoutSVGResourceMarker; | 16 class LayoutSVGResourceMarker; |
| 16 class LayoutSVGShape; | 17 class LayoutSVGShape; |
| 17 | 18 |
| 18 class SVGShapePainter { | 19 class SVGShapePainter { |
| 19 public: | 20 public: |
| 20 SVGShapePainter(LayoutSVGShape& renderSVGShape) : m_renderSVGShape(renderSVG
Shape) { } | 21 SVGShapePainter(LayoutSVGShape& renderSVGShape) : m_renderSVGShape(renderSVG
Shape) { } |
| 21 | 22 |
| 22 void paint(const PaintInfo&); | 23 void paint(const PaintInfo&); |
| 23 | 24 |
| 24 private: | 25 private: |
| 25 void fillShape(GraphicsContext*); | 26 void fillShape(GraphicsContext*, const SkPaint&); |
| 26 void strokeShape(GraphicsContext*); | 27 void strokeShape(GraphicsContext*, const SkPaint&); |
| 27 | 28 |
| 28 void paintMarkers(const PaintInfo&); | 29 void paintMarkers(const PaintInfo&); |
| 29 void paintMarker(const PaintInfo&, LayoutSVGResourceMarker&, const MarkerPos
ition&, float); | 30 void paintMarker(const PaintInfo&, LayoutSVGResourceMarker&, const MarkerPos
ition&, float); |
| 30 void strokeZeroLengthLineCaps(GraphicsContext*); | 31 void strokeZeroLengthLineCaps(GraphicsContext*, const SkPaint&); |
| 31 Path* zeroLengthLinecapPath(const FloatPoint&) const; | |
| 32 | 32 |
| 33 LayoutSVGShape& m_renderSVGShape; | 33 LayoutSVGShape& m_renderSVGShape; |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 } // namespace blink | 36 } // namespace blink |
| 37 | 37 |
| 38 #endif // SVGShapePainter_h | 38 #endif // SVGShapePainter_h |
| OLD | NEW |