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

Unified Diff: Source/modules/accessibility/AXSVGRoot.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/AXProgressIndicator.h ('k') | Source/modules/accessibility/AXScrollView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXSVGRoot.h
diff --git a/Source/modules/accessibility/AXSVGRoot.h b/Source/modules/accessibility/AXSVGRoot.h
index a286b4906954f3c829ddeed94866d3aecf37e16c..21fc11cc44b694a22c61a3d7f68fffdded0baa1e 100644
--- a/Source/modules/accessibility/AXSVGRoot.h
+++ b/Source/modules/accessibility/AXSVGRoot.h
@@ -42,13 +42,13 @@ protected:
public:
static PassRefPtrWillBeRawPtr<AXSVGRoot> create(LayoutObject*, AXObjectCacheImpl&);
- virtual ~AXSVGRoot();
+ ~AXSVGRoot() override;
void setParent(AXObject*) override;
private:
- virtual AXObject* computeParent() const override;
- virtual bool isAXSVGRoot() const override { return true; }
+ AXObject* computeParent() const override;
+ bool isAXSVGRoot() const override { return true; }
};
DEFINE_AX_OBJECT_TYPE_CASTS(AXSVGRoot, isAXSVGRoot());
« no previous file with comments | « Source/modules/accessibility/AXProgressIndicator.h ('k') | Source/modules/accessibility/AXScrollView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698