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

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

Issue 1056353003: Derive the SourceAlpha filter input from SourceGraphic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix variable name. Created 5 years, 8 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/SourceAlpha.h
diff --git a/Source/platform/graphics/filters/SourceAlpha.h b/Source/platform/graphics/filters/SourceAlpha.h
index 66cbbdbb6f9e41fb691cfa2010daac469d4679d4..1cb4aadd9342435d1e0c3eb396e353916e35811e 100644
--- a/Source/platform/graphics/filters/SourceAlpha.h
+++ b/Source/platform/graphics/filters/SourceAlpha.h
@@ -27,7 +27,7 @@ namespace blink {
class PLATFORM_EXPORT SourceAlpha : public FilterEffect {
public:
- static PassRefPtrWillBeRawPtr<SourceAlpha> create(Filter*);
+ static PassRefPtrWillBeRawPtr<SourceAlpha> create(FilterEffect*);
static const AtomicString& effectName();
@@ -39,10 +39,7 @@ public:
virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
private:
- SourceAlpha(Filter* filter)
- : FilterEffect(filter)
- {
- }
+ explicit SourceAlpha(FilterEffect*);
};
} // namespace blink
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilterBuilder.cpp ('k') | Source/platform/graphics/filters/SourceAlpha.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698