| 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_;
|
|
|