| Index: third_party/WebKit/Source/web/TextFinder.cpp
|
| diff --git a/third_party/WebKit/Source/web/TextFinder.cpp b/third_party/WebKit/Source/web/TextFinder.cpp
|
| index 6d4970ac512c9e644380488a965d6714ca96ab87..c8b976e85baa2dd135835d41aed1944af69a8b98 100644
|
| --- a/third_party/WebKit/Source/web/TextFinder.cpp
|
| +++ b/third_party/WebKit/Source/web/TextFinder.cpp
|
| @@ -45,8 +45,8 @@
|
| #include "core/layout/LayoutObject.h"
|
| #include "core/layout/TextAutosizer.h"
|
| #include "core/page/Page.h"
|
| +#include "modules/accessibility/AXObject.h"
|
| #include "modules/accessibility/AXObjectCacheImpl.h"
|
| -#include "modules/accessibility/AXObjectImpl.h"
|
| #include "platform/RuntimeEnabledFeatures.h"
|
| #include "platform/Timer.h"
|
| #include "platform/wtf/CurrentTime.h"
|
| @@ -252,10 +252,9 @@ void TextFinder::ReportFindInPageResultToAccessibility(int identifier) {
|
| if (!ax_object_cache)
|
| return;
|
|
|
| - AXObjectImpl* start_object =
|
| + AXObject* start_object =
|
| ax_object_cache->Get(active_match_->startContainer());
|
| - AXObjectImpl* end_object =
|
| - ax_object_cache->Get(active_match_->endContainer());
|
| + AXObject* end_object = ax_object_cache->Get(active_match_->endContainer());
|
| if (!start_object || !end_object)
|
| return;
|
|
|
|
|