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

Unified Diff: Source/modules/accessibility/AXObjectCacheImpl.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « Source/modules/accessibility/AXNodeObject.h ('k') | Source/modules/accessibility/AXObjectTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXObjectCacheImpl.h
diff --git a/Source/modules/accessibility/AXObjectCacheImpl.h b/Source/modules/accessibility/AXObjectCacheImpl.h
index 26930773a737ad3a52184adc580a732508b82e99..de2f9e61792ef0ecf1f46b3e72ad422421c8474f 100644
--- a/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -65,55 +65,55 @@ public:
AXObject* focusedUIElementForPage(const Page*);
- virtual void dispose() override;
+ void dispose() override;
- virtual void selectionChanged(Node*) override;
- virtual void childrenChanged(Node*) override;
- virtual void childrenChanged(LayoutObject*) override;
- virtual void checkedStateChanged(Node*) override;
+ void selectionChanged(Node*) override;
+ void childrenChanged(Node*) override;
+ void childrenChanged(LayoutObject*) override;
+ void checkedStateChanged(Node*) override;
virtual void listboxOptionStateChanged(HTMLOptionElement*);
virtual void listboxSelectedChildrenChanged(HTMLSelectElement*);
virtual void listboxActiveIndexChanged(HTMLSelectElement*);
- virtual void remove(LayoutObject*) override;
- virtual void remove(Node*) override;
- virtual void remove(Widget*) override;
- virtual void remove(AbstractInlineTextBox*) override;
+ void remove(LayoutObject*) override;
+ void remove(Node*) override;
+ void remove(Widget*) override;
+ void remove(AbstractInlineTextBox*) override;
- virtual const Element* rootAXEditableElement(const Node*) override;
+ const Element* rootAXEditableElement(const Node*) override;
// Called by a node when text or a text equivalent (e.g. alt) attribute is changed.
- virtual void textChanged(LayoutObject*) override;
+ void textChanged(LayoutObject*) override;
// Called when a node has just been attached, so we can make sure we have the right subclass of AXObject.
- virtual void updateCacheAfterNodeIsAttached(Node*) override;
+ void updateCacheAfterNodeIsAttached(Node*) override;
- virtual void handleAttributeChanged(const QualifiedName& attrName, Element*) override;
- virtual void handleFocusedUIElementChanged(Node* oldFocusedNode, Node* newFocusedNode) override;
- virtual void handleInitialFocus() override;
- virtual void handleTextFormControlChanged(Node*) override;
- virtual void handleEditableTextContentChanged(Node*) override;
- virtual void handleValueChanged(Node*) override;
- virtual void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex) override;
- virtual void didShowMenuListPopup(LayoutMenuList*) override;
- virtual void didHideMenuListPopup(LayoutMenuList*) override;
- virtual void handleLoadComplete(Document*) override;
- virtual void handleLayoutComplete(Document*) override;
+ void handleAttributeChanged(const QualifiedName& attrName, Element*) override;
+ void handleFocusedUIElementChanged(Node* oldFocusedNode, Node* newFocusedNode) override;
+ void handleInitialFocus() override;
+ void handleTextFormControlChanged(Node*) override;
+ void handleEditableTextContentChanged(Node*) override;
+ void handleValueChanged(Node*) override;
+ void handleUpdateActiveMenuOption(LayoutMenuList*, int optionIndex) override;
+ void didShowMenuListPopup(LayoutMenuList*) override;
+ void didHideMenuListPopup(LayoutMenuList*) override;
+ void handleLoadComplete(Document*) override;
+ void handleLayoutComplete(Document*) override;
- virtual void setCanvasObjectBounds(Element*, const LayoutRect&) override;
+ void setCanvasObjectBounds(Element*, const LayoutRect&) override;
- virtual void inlineTextBoxesUpdated(LayoutObject*) override;
+ void inlineTextBoxesUpdated(LayoutObject*) override;
// Called when the scroll offset changes.
- virtual void handleScrollPositionChanged(FrameView*) override;
- virtual void handleScrollPositionChanged(LayoutObject*) override;
+ void handleScrollPositionChanged(FrameView*) override;
+ void handleScrollPositionChanged(LayoutObject*) override;
// Called when scroll bars are added / removed (as the view resizes).
void handleScrollbarUpdate(FrameView*) override;
void handleLayoutComplete(LayoutObject*) override;
void handleScrolledToAnchor(const Node* anchorNode) override;
- virtual const AtomicString& computedRoleForNode(Node*) override;
- virtual String computedNameForNode(Node*) override;
+ const AtomicString& computedRoleForNode(Node*) override;
+ String computedNameForNode(Node*) override;
// Returns the root object for the entire document.
AXObject* rootObject();
« no previous file with comments | « Source/modules/accessibility/AXNodeObject.h ('k') | Source/modules/accessibility/AXObjectTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698