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/core/layout/svg/LayoutSVGResourceClipper.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/core/layout/svg/LayoutSVGRect.h ('k') | Source/core/layout/svg/LayoutSVGResourceContainer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/svg/LayoutSVGResourceClipper.h
diff --git a/Source/core/layout/svg/LayoutSVGResourceClipper.h b/Source/core/layout/svg/LayoutSVGResourceClipper.h
index 492484c4e4d7d25bdd2aa6e123df3533953e6571..ff53c3de67ad6b05f13669093c8d71f586468c0f 100644
--- a/Source/core/layout/svg/LayoutSVGResourceClipper.h
+++ b/Source/core/layout/svg/LayoutSVGResourceClipper.h
@@ -30,17 +30,17 @@ namespace blink {
class LayoutSVGResourceClipper final : public LayoutSVGResourceContainer {
public:
explicit LayoutSVGResourceClipper(SVGClipPathElement*);
- virtual ~LayoutSVGResourceClipper();
+ ~LayoutSVGResourceClipper() override;
- virtual const char* name() const override { return "LayoutSVGResourceClipper"; }
+ const char* name() const override { return "LayoutSVGResourceClipper"; }
- virtual void removeAllClientsFromCache(bool markForInvalidation = true) override;
- virtual void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override;
+ void removeAllClientsFromCache(bool markForInvalidation = true) override;
+ void removeClientFromCache(LayoutObject*, bool markForInvalidation = true) override;
FloatRect resourceBoundingBox(const LayoutObject*);
static const LayoutSVGResourceType s_resourceType = ClipperResourceType;
- virtual LayoutSVGResourceType resourceType() const override { return s_resourceType; }
+ LayoutSVGResourceType resourceType() const override { return s_resourceType; }
bool hitTestClipContent(const FloatRect&, const FloatPoint&);
« no previous file with comments | « Source/core/layout/svg/LayoutSVGRect.h ('k') | Source/core/layout/svg/LayoutSVGResourceContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698