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

Unified Diff: Source/modules/accessibility/AXListBox.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/AXList.h ('k') | Source/modules/accessibility/AXListBoxOption.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXListBox.h
diff --git a/Source/modules/accessibility/AXListBox.h b/Source/modules/accessibility/AXListBox.h
index f2fd0695ae84105ebffc04ac0e1ab1e396f5b706..ac24ac403a3149d9fcac364850f3a3c24c48698b 100644
--- a/Source/modules/accessibility/AXListBox.h
+++ b/Source/modules/accessibility/AXListBox.h
@@ -42,12 +42,12 @@ private:
public:
static PassRefPtrWillBeRawPtr<AXListBox> create(LayoutObject*, AXObjectCacheImpl&);
- virtual ~AXListBox();
+ ~AXListBox() override;
- virtual AccessibilityRole determineAccessibilityRole() override final;
- virtual bool isAXListBox() const override { return true; }
- virtual bool shouldFocusActiveDescendant() const override { return true; }
- virtual AXObject* activeDescendant() const override;
+ AccessibilityRole determineAccessibilityRole() final;
+ bool isAXListBox() const override { return true; }
+ bool shouldFocusActiveDescendant() const override { return true; }
+ AXObject* activeDescendant() const override;
void activeIndexChanged();
« no previous file with comments | « Source/modules/accessibility/AXList.h ('k') | Source/modules/accessibility/AXListBoxOption.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698