| Index: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
|
| index 9e27a08ce3020227ab6b7014725ab088f576e294..366cab942423cddc51fb9054680c07abac7a7272 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
|
| @@ -177,11 +177,11 @@ static inline void updateCharacterData(unsigned i, float& lastRotation, SVGChara
|
|
|
| void SVGTextLayoutAttributesBuilder::fillCharacterDataMap(const TextPosition& position)
|
| {
|
| - RefPtrWillBeRawPtr<SVGLengthList> xList = position.element->x()->currentValue();
|
| - RefPtrWillBeRawPtr<SVGLengthList> yList = position.element->y()->currentValue();
|
| - RefPtrWillBeRawPtr<SVGLengthList> dxList = position.element->dx()->currentValue();
|
| - RefPtrWillBeRawPtr<SVGLengthList> dyList = position.element->dy()->currentValue();
|
| - RefPtrWillBeRawPtr<SVGNumberList> rotateList = position.element->rotate()->currentValue();
|
| + RawPtr<SVGLengthList> xList = position.element->x()->currentValue();
|
| + RawPtr<SVGLengthList> yList = position.element->y()->currentValue();
|
| + RawPtr<SVGLengthList> dxList = position.element->dx()->currentValue();
|
| + RawPtr<SVGLengthList> dyList = position.element->dy()->currentValue();
|
| + RawPtr<SVGNumberList> rotateList = position.element->rotate()->currentValue();
|
|
|
| unsigned xListSize = xList->length();
|
| unsigned yListSize = yList->length();
|
|
|