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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXTableColumn.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/AXTableColumn.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXTableColumn.h b/third_party/WebKit/Source/modules/accessibility/AXTableColumn.h
index c800bf40310ad3bdb183b7c6165a716f1fd9624c..fbcfd3c4bb075bf6c3005c5644cbc58cf7c06519 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXTableColumn.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXTableColumn.h
@@ -48,7 +48,7 @@ class MODULES_EXPORT AXTableColumn final : public AXMockObject {
~AXTableColumn() override;
// retrieves the topmost "column" header (th)
- AXObject* HeaderObject();
+ AXObjectImpl* HeaderObject();
// retrieves the "column" headers (th, scope) from top to bottom
void HeaderObjectsForColumn(AXObjectVector&);
@@ -58,7 +58,7 @@ class MODULES_EXPORT AXTableColumn final : public AXMockObject {
int ColumnIndex() const { return column_index_; }
void AddChildren() override;
- void SetParent(AXObject*) override;
+ void SetParent(AXObjectImpl*) override;
private:
unsigned column_index_;

Powered by Google App Engine
This is Rietveld 408576698