Index: Source/core/layout/style/LayoutStyle.h |
diff --git a/Source/core/layout/style/LayoutStyle.h b/Source/core/layout/style/LayoutStyle.h |
index 07982610513800f3c72c0f6cea722cf401aae371..2da4708a53cafaf5328199275bf590039eba4df1 100644 |
--- a/Source/core/layout/style/LayoutStyle.h |
+++ b/Source/core/layout/style/LayoutStyle.h |
@@ -1386,8 +1386,8 @@ public: |
void setFloodColor(const Color& c) { accessSVGStyle().setFloodColor(c); } |
void setLightingColor(const Color& c) { accessSVGStyle().setLightingColor(c); } |
- SVGLength* baselineShiftValue() const { return svgStyle().baselineShiftValue(); } |
- void setBaselineShiftValue(PassRefPtrWillBeRawPtr<SVGLength> s) { accessSVGStyle().setBaselineShiftValue(s); } |
+ const Length& baselineShiftValue() const { return svgStyle().baselineShiftValue(); } |
+ void setBaselineShiftValue(const Length& s) { accessSVGStyle().setBaselineShiftValue(s); } |
void setShapeOutside(PassRefPtr<ShapeValue> value) |
{ |