Index: third_party/WebKit/Source/web/WebNode.cpp |
diff --git a/third_party/WebKit/Source/web/WebNode.cpp b/third_party/WebKit/Source/web/WebNode.cpp |
index 9ea216f1bea5e429869606d6762a67934fb73835..2c2af671b77060e82c6fcccbf43ecd43d9240165 100644 |
--- a/third_party/WebKit/Source/web/WebNode.cpp |
+++ b/third_party/WebKit/Source/web/WebNode.cpp |
@@ -45,8 +45,8 @@ |
#include "core/html/HTMLElement.h" |
#include "core/layout/LayoutObject.h" |
#include "core/layout/LayoutPart.h" |
-#include "modules/accessibility/AXObject.h" |
#include "modules/accessibility/AXObjectCacheImpl.h" |
+#include "modules/accessibility/AXObjectImpl.h" |
#include "platform/FrameViewBase.h" |
#include "platform/wtf/PtrUtil.h" |
#include "public/platform/WebString.h" |
@@ -131,7 +131,7 @@ bool WebNode::IsContentEditable() const { |
} |
bool WebNode::IsInsideFocusableElementOrARIAWidget() const { |
- return AXObject::IsInsideFocusableElementOrARIAWidget( |
+ return AXObjectImpl::IsInsideFocusableElementOrARIAWidget( |
*this->ConstUnwrap<Node>()); |
} |