Index: third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.h |
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.h b/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.h |
index a80099a2aff29667ba745cf11d6f23962745c7bc..e4cdfc24cf5f0117d2a36c017af6a81d986fa4f3 100644 |
--- a/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.h |
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEConvolveMatrix.h |
@@ -50,8 +50,6 @@ public: |
bool setEdgeMode(EdgeModeType); |
bool setPreserveAlpha(bool); |
- PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override; |
- |
FloatRect mapPaintRect(const FloatRect&, bool forward = true) final; |
TextStream& externalRepresentation(TextStream&, int indention) const override; |
@@ -60,6 +58,8 @@ private: |
FEConvolveMatrix(Filter*, const IntSize&, float, float, |
const IntPoint&, EdgeModeType, bool, const Vector<float>&); |
+ PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder&) override; |
+ |
bool parametersValid() const; |
IntSize m_kernelSize; |