| 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 198f0ceed04767ee5259e51e14d041bcaeca7547..ba78476cd57aea0db3512231ce02440af749a708 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/AXObjectCacheBase.h"
|
| #include "core/dom/Document.h"
|
| #include "core/dom/Element.h"
|
| @@ -47,7 +48,6 @@
|
| #include "core/html/HTMLElement.h"
|
| #include "core/layout/LayoutObject.h"
|
| #include "core/layout/LayoutPart.h"
|
| -#include "modules/accessibility/AXObjectImpl.h"
|
| #include "platform/wtf/PtrUtil.h"
|
| #include "public/platform/WebString.h"
|
| #include "public/web/WebAXObject.h"
|
| @@ -127,7 +127,7 @@ bool WebNode::IsContentEditable() const {
|
| }
|
|
|
| bool WebNode::IsInsideFocusableElementOrARIAWidget() const {
|
| - return AXObjectImpl::IsInsideFocusableElementOrARIAWidget(
|
| + return AXObject::IsInsideFocusableElementOrARIAWidget(
|
| *this->ConstUnwrap<Node>());
|
| }
|
|
|
|
|