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

Unified Diff: Source/core/accessibility/AXMenuList.h

Issue 603423002: Replace OVERRIDE and FINAL with their C++11 counterparts in core/accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Narrowing area to core/accessibility Created 6 years, 2 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/core/accessibility/AXMediaControls.h ('k') | Source/core/accessibility/AXMenuListOption.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXMenuList.h
diff --git a/Source/core/accessibility/AXMenuList.h b/Source/core/accessibility/AXMenuList.h
index 1f65ceea550c7f6691de2ad83c6070a41e4603d3..de8454ecd8b7e92ea484c47a68a38d8cbbc11526 100644
--- a/Source/core/accessibility/AXMenuList.h
+++ b/Source/core/accessibility/AXMenuList.h
@@ -35,24 +35,24 @@ class AXMenuListPopup;
class HTMLOptionElement;
class RenderMenuList;
-class AXMenuList FINAL : public AXRenderObject {
+class AXMenuList final : public AXRenderObject {
public:
static PassRefPtr<AXMenuList> create(RenderMenuList* renderer);
- virtual bool isCollapsed() const OVERRIDE;
- virtual bool press() const OVERRIDE;
+ virtual bool isCollapsed() const override;
+ virtual bool press() const override;
void didUpdateActiveOption(int optionIndex);
private:
explicit AXMenuList(RenderMenuList*);
- virtual bool isMenuList() const OVERRIDE { return true; }
- virtual AccessibilityRole roleValue() const OVERRIDE { return PopUpButtonRole; }
- virtual bool canSetFocusAttribute() const OVERRIDE;
+ virtual bool isMenuList() const override { return true; }
+ virtual AccessibilityRole roleValue() const override { return PopUpButtonRole; }
+ virtual bool canSetFocusAttribute() const override;
- virtual void addChildren() OVERRIDE;
- virtual void childrenChanged() OVERRIDE;
+ virtual void addChildren() override;
+ virtual void childrenChanged() override;
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXMenuList, isMenuList());
« no previous file with comments | « Source/core/accessibility/AXMediaControls.h ('k') | Source/core/accessibility/AXMenuListOption.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698