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

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

Issue 1417213006: Switch all LayoutTests to use new AX name calculation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/AXNodeObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
index b6db707da43b44ff2fe4ffd4b2639728dee7766f..8d583a2b4d50d6fa0be5939bacd132587e757a50 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; }

Powered by Google App Engine
This is Rietveld 408576698