Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(775)

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXSVGRoot.cpp

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Fixed rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698