Index: third_party/WebKit/Source/core/svg/SVGMPathElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGMPathElement.cpp b/third_party/WebKit/Source/core/svg/SVGMPathElement.cpp |
index a3a6ae54de98103a9565b2b562cd9703a60fc06e..5ce2f931b40015922af34a03daee3f72499928b6 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGMPathElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGMPathElement.cpp |
@@ -51,10 +51,10 @@ void SVGMPathElement::buildPendingResource() { |
if (!target) { |
// Do not register as pending if we are already pending this resource. |
if (treeScope().ensureSVGTreeScopedResources().isElementPendingResource( |
- this, id)) |
+ *this, id)) |
return; |
if (!id.isEmpty()) { |
- treeScope().ensureSVGTreeScopedResources().addPendingResource(id, this); |
+ treeScope().ensureSVGTreeScopedResources().addPendingResource(id, *this); |
DCHECK(hasPendingResources()); |
} |
} else if (isSVGPathElement(target)) { |