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

Unified Diff: Source/core/svg/graphics/filters/SVGFilter.h

Issue 14652016: Implement filter primitive subregion for reference CSS filters. This required refactoring determin… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix test failures: ReferenceFilterOperation should ref the Filter which owns its FilterEffects Created 7 years, 7 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/core/svg/SVGFilterElement.h ('k') | Source/core/svg/graphics/filters/SVGFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/graphics/filters/SVGFilter.h
diff --git a/Source/core/svg/graphics/filters/SVGFilter.h b/Source/core/svg/graphics/filters/SVGFilter.h
index 61ed399d568347e7ba70cbc95062183c42a35bb3..3b1232d22f6f6212a2c8fa48531c6613371e58f1 100644
--- a/Source/core/svg/graphics/filters/SVGFilter.h
+++ b/Source/core/svg/graphics/filters/SVGFilter.h
@@ -38,9 +38,6 @@ class SVGFilter : public Filter {
public:
static PassRefPtr<SVGFilter> create(const AffineTransform&, const FloatRect&, const FloatRect&, const FloatRect&, bool);
- FloatRect filterRegionInUserSpace() const { return m_filterRegion; }
- virtual FloatRect filterRegion() const { return m_absoluteFilterRegion; }
-
virtual float applyHorizontalScale(float value) const;
virtual float applyVerticalScale(float value) const;
@@ -52,8 +49,6 @@ private:
FloatRect m_absoluteSourceDrawingRegion;
FloatRect m_targetBoundingBox;
- FloatRect m_absoluteFilterRegion;
- FloatRect m_filterRegion;
bool m_effectBBoxMode;
};
« no previous file with comments | « Source/core/svg/SVGFilterElement.h ('k') | Source/core/svg/graphics/filters/SVGFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698