Index: third_party/WebKit/Source/core/style/ComputedStyle.h |
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h |
index 487253148150fbff82da9531eb7645359defcd51..e44f182d5d4ebe55bb09ec6a67bed842cc87a865 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
@@ -115,6 +115,7 @@ class ScaleTransformOperation; |
class ShadowList; |
class StyleImage; |
class StyleInheritedData; |
+class StylePath; |
class StyleResolver; |
class TransformationMatrix; |
class TranslateTransformOperation; |
@@ -1498,7 +1499,7 @@ public: |
float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); } |
void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f); } |
- void setD(PassRefPtrWillBeRawPtr<CSSPathValue> d) { accessSVGStyle().setD(d); } |
+ void setD(PassRefPtr<StylePath> d) { accessSVGStyle().setD(d); } |
void setCx(const Length& cx) { accessSVGStyle().setCx(cx); } |
void setCy(const Length& cy) { accessSVGStyle().setCy(cy); } |
void setX(const Length& x) { accessSVGStyle().setX(x); } |