| Index: third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGPathElement.cpp b/third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| index a59e280b41d634f58b3d0468ad9afd61544a92e5..4ce0cbf14ca420471bfa342a949e378ed902d7d0 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGPathElement.cpp
|
| @@ -92,24 +92,24 @@ DEFINE_NODE_FACTORY(SVGPathElement)
|
| Path SVGPathElement::asPath() const
|
| {
|
| Path path;
|
| - buildPathFromByteStream(*pathByteStream(), path);
|
| + buildPathFromByteStream(pathByteStream(), path);
|
| return path;
|
| }
|
|
|
| float SVGPathElement::getTotalLength()
|
| {
|
| - return getTotalLengthOfSVGPathByteStream(*pathByteStream());
|
| + return getTotalLengthOfSVGPathByteStream(pathByteStream());
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<SVGPointTearOff> SVGPathElement::getPointAtLength(float length)
|
| {
|
| - FloatPoint point = getPointAtLengthOfSVGPathByteStream(*pathByteStream(), length);
|
| + FloatPoint point = getPointAtLengthOfSVGPathByteStream(pathByteStream(), length);
|
| return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal);
|
| }
|
|
|
| unsigned SVGPathElement::getPathSegAtLength(float length)
|
| {
|
| - return getSVGPathSegAtLengthFromSVGPathByteStream(*pathByteStream(), length);
|
| + return getSVGPathSegAtLengthFromSVGPathByteStream(pathByteStream(), length);
|
| }
|
|
|
| PassRefPtrWillBeRawPtr<SVGPathSegClosePath> SVGPathElement::createSVGPathSegClosePath()
|
|
|