Index: third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp |
diff --git a/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp b/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp |
index eb04cffaa3c9df82d64d53255483b5f88e64abf3..08c33dcda028eb1d96184be18e8818b2556ca392 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp |
+++ b/third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp |
@@ -43,7 +43,7 @@ AXSVGRoot* AXSVGRoot::Create(LayoutObject* layout_object, |
return new AXSVGRoot(layout_object, ax_object_cache); |
} |
-void AXSVGRoot::SetParent(AXObject* parent) { |
+void AXSVGRoot::SetParent(AXObjectImpl* parent) { |
// Only update the parent to another objcet if it wasn't already set to |
// something. Multiple elements in an HTML document can reference |
// the same remote SVG document, and in that case the parent should just |
@@ -52,7 +52,7 @@ void AXSVGRoot::SetParent(AXObject* parent) { |
parent_ = parent; |
} |
-AXObject* AXSVGRoot::ComputeParent() const { |
+AXObjectImpl* AXSVGRoot::ComputeParent() const { |
DCHECK(!IsDetached()); |
// If a parent was set because this is a remote SVG resource, use that |
// but otherwise, we should rely on the standard layout tree for the parent. |