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 b6db707da43b44ff2fe4ffd4b2639728dee7766f..48bb785760047847ef0f114c221da0d8544e0356 100644 |
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h |
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h |
@@ -109,7 +109,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; |
@@ -191,7 +191,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; } |
@@ -229,6 +229,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()); |