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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FEOffset.h

Issue 1387573003: Pass SkiaImageFilterBuilder& to FilterEffect::createImageFilter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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: third_party/WebKit/Source/platform/graphics/filters/FEOffset.h
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FEOffset.h b/third_party/WebKit/Source/platform/graphics/filters/FEOffset.h
index c5ef247dfbc2a256c2aeefe0e5b8cc9a56c2dd70..2f2350987725eb351fbf0101095e683b3de009ed 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FEOffset.h
+++ b/third_party/WebKit/Source/platform/graphics/filters/FEOffset.h
@@ -41,11 +41,11 @@ public:
TextStream& externalRepresentation(TextStream&, int indention) const override;
- PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
-
private:
FEOffset(Filter*, float dx, float dy);
+ PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder&) override;
+
float m_dx;
float m_dy;
};

Powered by Google App Engine
This is Rietveld 408576698