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

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

Issue 135833002: Add missing virtual keyword for methods with OVERRIDE (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
Index: Source/platform/graphics/filters/FEFlood.h
diff --git a/Source/platform/graphics/filters/FEFlood.h b/Source/platform/graphics/filters/FEFlood.h
index d8bd9bc735cc5e4b30fd2aeeae0d94c65a11786a..e3a412341b0958d4407596f465e6be33b8de8895 100644
--- a/Source/platform/graphics/filters/FEFlood.h
+++ b/Source/platform/graphics/filters/FEFlood.h
@@ -41,8 +41,8 @@ public:
// feFlood does not perform color interpolation of any kind, so the result is always in the current
// color space regardless of the value of color-interpolation-filters.
- void setOperatingColorSpace(ColorSpace) OVERRIDE { }
- void setResultColorSpace(ColorSpace) OVERRIDE { }
+ virtual void setOperatingColorSpace(ColorSpace) OVERRIDE { }
+ virtual void setResultColorSpace(ColorSpace) OVERRIDE { }
virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) OVERRIDE;
« no previous file with comments | « Source/platform/graphics/filters/FEDisplacementMap.h ('k') | Source/platform/graphics/test/MockDiscardablePixelRef.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698