| Index: Source/core/css/SVGCSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/SVGCSSComputedStyleDeclaration.cpp b/Source/core/css/SVGCSSComputedStyleDeclaration.cpp
|
| index a453a67ee3885d34fc2c686cd5db31e79fbd424d..4cdac90170d33f77a9d5761b9e09f27a92ee0a7f 100644
|
| --- a/Source/core/css/SVGCSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/SVGCSSComputedStyleDeclaration.cpp
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -static PassRefPtr<CSSPrimitiveValue> glyphOrientationToCSSPrimitiveValue(EGlyphOrientation orientation)
|
| +static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> glyphOrientationToCSSPrimitiveValue(EGlyphOrientation orientation)
|
| {
|
| switch (orientation) {
|
| case GO_0DEG:
|
| @@ -205,7 +205,7 @@ PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(CSSProp
|
| case CSSPropertyGlyphOrientationHorizontal:
|
| return glyphOrientationToCSSPrimitiveValue(svgStyle->glyphOrientationHorizontal());
|
| case CSSPropertyGlyphOrientationVertical: {
|
| - if (RefPtr<CSSPrimitiveValue> value = glyphOrientationToCSSPrimitiveValue(svgStyle->glyphOrientationVertical()))
|
| + if (RefPtrWillBeRawPtr<CSSPrimitiveValue> value = glyphOrientationToCSSPrimitiveValue(svgStyle->glyphOrientationVertical()))
|
| return value.release();
|
|
|
| if (svgStyle->glyphOrientationVertical() == GO_AUTO)
|
|
|