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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXTableCell.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/AXTableCell.cpp
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTableCell.cpp b/third_party/WebKit/Source/modules/accessibility/AXTableCell.cpp
index eadaebad1ebc2d9e8fddafa8cc113d9f258ab2cc..8d701aebe1681b01122f9aeb8dbbd1ada6de9453 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTableCell.cpp
+++ b/third_party/WebKit/Source/modules/accessibility/AXTableCell.cpp
@@ -78,7 +78,7 @@ bool AXTableCell::ComputeAccessibilityIsIgnored(
return false;
}
-AXObject* AXTableCell::ParentTable() const {
+AXObjectImpl* AXTableCell::ParentTable() const {
if (!layout_object_ || !layout_object_->IsTableCell())
return 0;
@@ -96,7 +96,7 @@ AXObject* AXTableCell::ParentTable() const {
}
bool AXTableCell::IsTableCell() const {
- AXObject* parent = ParentObjectUnignored();
+ AXObjectImpl* parent = ParentObjectUnignored();
if (!parent || !parent->IsTableRow())
return false;
@@ -108,7 +108,7 @@ unsigned AXTableCell::AriaColumnIndex() const {
if (col_index.ToInt() >= 1)
return col_index.ToInt();
- AXObject* parent = ParentObjectUnignored();
+ AXObjectImpl* parent = ParentObjectUnignored();
if (!parent || !parent->IsTableRow())
return 0;
@@ -120,7 +120,7 @@ unsigned AXTableCell::AriaRowIndex() const {
if (row_index.ToInt() >= 1)
return row_index.ToInt();
- AXObject* parent = ParentObjectUnignored();
+ AXObjectImpl* parent = ParentObjectUnignored();
if (!parent || !parent->IsTableRow())
return 0;

Powered by Google App Engine
This is Rietveld 408576698