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

Unified Diff: Source/core/accessibility/AXSVGRoot.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/AXRenderObject.h ('k') | Source/core/accessibility/AXScrollView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/accessibility/AXSVGRoot.h
diff --git a/Source/core/accessibility/AXSVGRoot.h b/Source/core/accessibility/AXSVGRoot.h
index c1bf89eb791442d87bb770de712b2f48ebc38fd4..c78dd01a7108c0580449b1015c33d8ca1f6a9be8 100644
--- a/Source/core/accessibility/AXSVGRoot.h
+++ b/Source/core/accessibility/AXSVGRoot.h
@@ -33,7 +33,7 @@
namespace blink {
-class AXSVGRoot FINAL : public AXRenderObject {
+class AXSVGRoot final : public AXRenderObject {
protected:
explicit AXSVGRoot(RenderObject*);
@@ -46,8 +46,8 @@ public:
private:
AXObject* m_parent;
- virtual AXObject* parentObject() const OVERRIDE;
- virtual bool isAXSVGRoot() const OVERRIDE { return true; }
+ virtual AXObject* parentObject() const override;
+ virtual bool isAXSVGRoot() const override { return true; }
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXSVGRoot, isAXSVGRoot());
« no previous file with comments | « Source/core/accessibility/AXRenderObject.h ('k') | Source/core/accessibility/AXScrollView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698