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

Unified Diff: Source/platform/graphics/filters/ReferenceFilter.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (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/platform/graphics/filters/PointLightSource.h ('k') | Source/platform/graphics/filters/SourceAlpha.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/ReferenceFilter.h
diff --git a/Source/platform/graphics/filters/ReferenceFilter.h b/Source/platform/graphics/filters/ReferenceFilter.h
index eddc1d35549b53ca50f1584e37fb27f8a550e00e..69271fde45ef80da7d9f223923107804b6590a07 100644
--- a/Source/platform/graphics/filters/ReferenceFilter.h
+++ b/Source/platform/graphics/filters/ReferenceFilter.h
@@ -49,10 +49,10 @@ public:
return adoptRefWillBeNoop(new ReferenceFilter(scale));
}
- virtual ~ReferenceFilter();
+ ~ReferenceFilter() override;
DECLARE_VIRTUAL_TRACE();
- virtual IntRect sourceImageRect() const override { return IntRect(); };
+ IntRect sourceImageRect() const override { return IntRect(); };
void setLastEffect(PassRefPtrWillBeRawPtr<FilterEffect>);
FilterEffect* lastEffect() const { return m_lastEffect.get(); }
« no previous file with comments | « Source/platform/graphics/filters/PointLightSource.h ('k') | Source/platform/graphics/filters/SourceAlpha.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698