| Index: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
|
| index 576ab6210f23b6fc2a2361094ee482ca7c2601dc..0061dbb9691a51c73aff7dd0a900953475360bf0 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
|
| @@ -108,7 +108,7 @@ protected:
|
| bool isImage() const final;
|
| bool isImageButton() const;
|
| bool isInputImage() const final;
|
| - bool isLink() const final;
|
| + bool isLink() const override;
|
| bool isMenu() const final;
|
| bool isMenuButton() const final;
|
| bool isMeter() const final;
|
| @@ -190,7 +190,7 @@ protected:
|
| void insertChild(AXObject*, unsigned index);
|
|
|
| // DOM and Render tree access.
|
| - Element* actionElement() const final;
|
| + Element* actionElement() const override;
|
| Element* anchorElement() const override;
|
| Document* document() const override;
|
| Node* node() const override { return m_node; }
|
| @@ -228,6 +228,7 @@ private:
|
| float stepValueForRange() const;
|
| AXObject* findChildWithTagName(const HTMLQualifiedName&) const;
|
| bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const;
|
| + String stringValueOfControl() const;
|
| };
|
|
|
| DEFINE_AX_OBJECT_TYPE_CASTS(AXNodeObject, isAXNodeObject());
|
|
|