| 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 a360a5f8d3e3dc44eafb10556c8f1b8423a40203..5eed068180fb91f905b9921e491d52635c6cdac9 100644
|
| --- a/third_party/WebKit/Source/web/WebNode.cpp
|
| +++ b/third_party/WebKit/Source/web/WebNode.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "public/web/WebNode.h"
|
|
|
| #include "bindings/core/v8/ExceptionState.h"
|
| +#include "core/dom/AXObject.h"
|
| #include "core/dom/Document.h"
|
| #include "core/dom/Element.h"
|
| #include "core/dom/Node.h"
|
| @@ -46,7 +47,6 @@
|
| #include "core/layout/LayoutObject.h"
|
| #include "core/layout/LayoutPart.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"
|
| @@ -129,7 +129,7 @@ bool WebNode::IsContentEditable() const {
|
| }
|
|
|
| bool WebNode::IsInsideFocusableElementOrARIAWidget() const {
|
| - return AXObjectImpl::IsInsideFocusableElementOrARIAWidget(
|
| + return AXObject::IsInsideFocusableElementOrARIAWidget(
|
| *this->ConstUnwrap<Node>());
|
| }
|
|
|
|
|