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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXTableRow.cpp

Issue 2887613002: Revert of Rename AXObject to AXObjectImpl in modules/ and web/ (patchset #9 id:160001 of https://co… (Closed)
Patch Set: 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/modules/accessibility/AXTableRow.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTableRow.cpp b/third_party/WebKit/Source/modules/accessibility/AXTableRow.cpp
index eada2ab32697c17aa22cb046529d50c97f6dea28..a9be9635aab070fa26b29f58632b9f1a44b83074 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTableRow.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTableRow.cpp
@@ -75,7 +75,7 @@ AccessibilityRole AXTableRow::DetermineAccessibilityRole() {
}
bool AXTableRow::IsTableRow() const {
- AXObjectImpl* table = ParentTable();
+ AXObject* table = ParentTable();
if (!table || !table->IsAXTable())
return false;
@@ -96,15 +96,15 @@ bool AXTableRow::ComputeAccessibilityIsIgnored(
return false;
}
-AXObjectImpl* AXTableRow::ParentTable() const {
- AXObjectImpl* parent = ParentObjectUnignored();
+AXObject* AXTableRow::ParentTable() const {
+ AXObject* parent = ParentObjectUnignored();
if (!parent || !parent->IsAXTable())
return 0;
return parent;
}
-AXObjectImpl* AXTableRow::HeaderObject() {
+AXObject* AXTableRow::HeaderObject() {
AXObjectVector headers;
HeaderObjectsForRow(headers);
if (!headers.size())
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXTableRow.h ('k') | third_party/WebKit/Source/modules/accessibility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698