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

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

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.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTableRow.h b/third_party/WebKit/Source/modules/accessibility/AXTableRow.h
index 279572db296592cb65a00bdb1681fde7a6a933cc..6caef64f3e0ac46297f822ea49d09af3051eb787 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTableRow.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXTableRow.h
@@ -49,11 +49,11 @@ class MODULES_EXPORT AXTableRow : public AXLayoutObject {
bool IsTableRow() const final;
// retrieves the "row" header (a th tag in the rightmost column)
- virtual AXObject* HeaderObject();
+ virtual AXObjectImpl* HeaderObject();
// Retrieves the "row" headers (th, scope) from left to right for the each
// row.
virtual void HeaderObjectsForRow(AXObjectVector&);
- AXObject* ParentTable() const;
+ AXObjectImpl* ParentTable() const;
void SetRowIndex(int row_index) { row_index_ = row_index; }
int RowIndex() const { return row_index_; }

Powered by Google App Engine
This is Rietveld 408576698