| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMarker.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
|
| index a1b5d8d38b837ef41695618d074a7a604b1c9361..e092528cb108062186336895a4b6e53564cd5330 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceMarker.cpp
|
| @@ -72,15 +72,9 @@ FloatRect LayoutSVGResourceMarker::markerBoundaries(
|
| return markerTransformation.mapRect(coordinates);
|
| }
|
|
|
| -const AffineTransform& LayoutSVGResourceMarker::localToSVGParentTransform()
|
| - const {
|
| - m_localToParentTransform =
|
| - AffineTransform::translation(m_viewport.x(), m_viewport.y()) *
|
| - viewportTransform();
|
| - return m_localToParentTransform;
|
| - // If this class were ever given a localTransform(), then the above would
|
| - // read:
|
| - // return viewportTranslation * localTransform() * viewportTransform();
|
| +AffineTransform LayoutSVGResourceMarker::localToSVGParentTransform() const {
|
| + return AffineTransform::translation(m_viewport.x(), m_viewport.y()) *
|
| + viewportTransform();
|
| }
|
|
|
| FloatPoint LayoutSVGResourceMarker::referencePoint() const {
|
|
|