| Index: third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| index bd635ce994cb454b60aea2edfecba8adc637f068..3977ea3e4ce9815de5b580aac5f8880c334ce645 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.cpp
|
| @@ -160,8 +160,7 @@
|
|
|
| void SVGLayoutSupport::mapAncestorToLocal(const LayoutObject& object,
|
| const LayoutBoxModelObject* ancestor,
|
| - TransformState& transformState,
|
| - MapCoordinatesFlags flags) {
|
| + TransformState& transformState) {
|
| // |object| is either a LayoutSVGModelObject or a LayoutSVGBlock here. In
|
| // the former case, |object| can never be an ancestor while in the latter
|
| // the caller is responsible for doing the ancestor check. Because of this,
|
| @@ -174,7 +173,7 @@
|
| const LayoutSVGRoot& svgRoot =
|
| computeTransformToSVGRoot(object, localToSVGRoot);
|
|
|
| - MapCoordinatesFlags mode = flags | UseTransforms | ApplyContainerFlip;
|
| + MapCoordinatesFlags mode = UseTransforms | ApplyContainerFlip;
|
| svgRoot.mapAncestorToLocal(ancestor, transformState, mode);
|
|
|
| transformState.applyTransform(localToSVGRoot);
|
|
|