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

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

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Fixed rebase 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 a9be9635aab070fa26b29f58632b9f1a44b83074..eada2ab32697c17aa22cb046529d50c97f6dea28 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 {
- AXObject* table = ParentTable();
+ AXObjectImpl* table = ParentTable();
if (!table || !table->IsAXTable())
return false;
@@ -96,15 +96,15 @@ bool AXTableRow::ComputeAccessibilityIsIgnored(
return false;
}
-AXObject* AXTableRow::ParentTable() const {
- AXObject* parent = ParentObjectUnignored();
+AXObjectImpl* AXTableRow::ParentTable() const {
+ AXObjectImpl* parent = ParentObjectUnignored();
if (!parent || !parent->IsAXTable())
return 0;
return parent;
}
-AXObject* AXTableRow::HeaderObject() {
+AXObjectImpl* 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