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

Unified Diff: Source/core/accessibility/AXListBox.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/AXList.h ('k') | Source/core/accessibility/AXListBoxOption.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXListBox.h
diff --git a/Source/core/accessibility/AXListBox.h b/Source/core/accessibility/AXListBox.h
index 47c7f3dcd7ad86aead62a2560c7cbf04e752f67b..06c127370874d981b9b54a2c21e779e9da288dec 100644
--- a/Source/core/accessibility/AXListBox.h
+++ b/Source/core/accessibility/AXListBox.h
@@ -33,7 +33,7 @@
namespace blink {
-class AXListBox FINAL : public AXRenderObject {
+class AXListBox final : public AXRenderObject {
private:
explicit AXListBox(RenderObject*);
@@ -41,7 +41,7 @@ public:
static PassRefPtr<AXListBox> create(RenderObject*);
virtual ~AXListBox();
- virtual AccessibilityRole roleValue() const OVERRIDE { return ListBoxRole; }
+ virtual AccessibilityRole roleValue() const override { return ListBoxRole; }
};
} // namespace blink
« no previous file with comments | « Source/core/accessibility/AXList.h ('k') | Source/core/accessibility/AXListBoxOption.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698