Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Unified Diff: third_party/WebKit/Source/web/TextFinder.cpp

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Reverted unexpected change to blink rename merge helper Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 b98bfc3ed9ae5c097b401df0d9ad57c9e93bcc90..7efb18d7233b739a8b14adcd6ea1f554697f3ae9 100644
--- a/third_party/WebKit/Source/web/TextFinder.cpp
+++ b/third_party/WebKit/Source/web/TextFinder.cpp
@@ -44,8 +44,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,9 +252,10 @@ void TextFinder::ReportFindInPageResultToAccessibility(int identifier) {
if (!ax_object_cache)
return;
- AXObject* start_object =
+ AXObjectImpl* start_object =
ax_object_cache->Get(active_match_->startContainer());
- AXObject* end_object = ax_object_cache->Get(active_match_->endContainer());
+ AXObjectImpl* end_object =
+ ax_object_cache->Get(active_match_->endContainer());
if (!start_object || !end_object)
return;

Powered by Google App Engine
This is Rietveld 408576698