| 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 c83ac895556051fbc069c7dab82fbf255d5d7216..12105550b775712c471db8d80a94121ac84486e8 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/wtf/PtrUtil.h"
|
| #include "public/platform/WebString.h"
|
| #include "public/web/WebAXObject.h"
|
| @@ -128,7 +128,7 @@ bool WebNode::IsContentEditable() const {
|
| }
|
|
|
| bool WebNode::IsInsideFocusableElementOrARIAWidget() const {
|
| - return AXObjectImpl::IsInsideFocusableElementOrARIAWidget(
|
| + return AXObject::IsInsideFocusableElementOrARIAWidget(
|
| *this->ConstUnwrap<Node>());
|
| }
|
|
|
|
|