Index: third_party/WebKit/Source/core/paint/SVGShapePainter.h |
diff --git a/third_party/WebKit/Source/core/paint/SVGShapePainter.h b/third_party/WebKit/Source/core/paint/SVGShapePainter.h |
index 3befb8f505744b6833c11a611dcb36edf6cc4c88..d71fd140958a4e85163c7f98b2299c2d0b15e716 100644 |
--- a/third_party/WebKit/Source/core/paint/SVGShapePainter.h |
+++ b/third_party/WebKit/Source/core/paint/SVGShapePainter.h |
@@ -5,11 +5,10 @@ |
#ifndef SVGShapePainter_h |
#define SVGShapePainter_h |
+#include "platform/graphics/paint/PaintFlags.h" |
#include "third_party/skia/include/core/SkPath.h" |
#include "wtf/Allocator.h" |
-class SkPaint; |
- |
namespace blink { |
class FloatRect; |
@@ -29,8 +28,8 @@ class SVGShapePainter { |
void paint(const PaintInfo&); |
private: |
- void fillShape(GraphicsContext&, const SkPaint&, SkPath::FillType); |
- void strokeShape(GraphicsContext&, const SkPaint&); |
+ void fillShape(GraphicsContext&, const PaintFlags&, SkPath::FillType); |
+ void strokeShape(GraphicsContext&, const PaintFlags&); |
void paintMarkers(const PaintInfo&, const FloatRect& boundingBox); |
void paintMarker(const PaintInfo&, |