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

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

Powered by Google App Engine
This is Rietveld 408576698