| Index: third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| index 0b96cbe6cd2978cd91532bcf380d9081aaa0e6f4..f285a60c36d74a050a3bdeef98338632a4bbf1c3 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| @@ -44,7 +44,7 @@ SVGGeometryElement::SVGGeometryElement(const QualifiedName& tagName, Document& d
|
| {
|
| }
|
|
|
| -bool SVGGeometryElement::isPointInFill(PassRefPtrWillBeRawPtr<SVGPointTearOff> point) const
|
| +bool SVGGeometryElement::isPointInFill(RawPtr<SVGPointTearOff> point) const
|
| {
|
| document().updateLayoutIgnorePendingStylesheets();
|
|
|
| @@ -58,7 +58,7 @@ bool SVGGeometryElement::isPointInFill(PassRefPtrWillBeRawPtr<SVGPointTearOff> p
|
| return toLayoutSVGShape(layoutObject())->nodeAtFloatPointInternal(request, point->target()->value(), hitRules);
|
| }
|
|
|
| -bool SVGGeometryElement::isPointInStroke(PassRefPtrWillBeRawPtr<SVGPointTearOff> point) const
|
| +bool SVGGeometryElement::isPointInStroke(RawPtr<SVGPointTearOff> point) const
|
| {
|
| document().updateLayoutIgnorePendingStylesheets();
|
|
|
|
|