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

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

Issue 1338753003: Specify the source rect on the SourceGraphic (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Doh Created 5 years, 3 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/paint/SVGFilterPainter.cpp ('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 5e7bb4e138d01c01954e183716ba73915699bc77..c19879a3d46247a55659fb6929a9b5716e5ec717 100644
--- a/Source/core/svg/graphics/filters/SVGFilter.h
+++ b/Source/core/svg/graphics/filters/SVGFilter.h
@@ -32,18 +32,15 @@ namespace blink {
class SVGFilter final : public Filter {
public:
- static PassRefPtrWillBeRawPtr<SVGFilter> create(const IntRect&, const FloatRect&, const FloatRect&, bool);
+ static PassRefPtrWillBeRawPtr<SVGFilter> create(const FloatRect&, const FloatRect&, bool);
float applyHorizontalScale(float value) const override;
float applyVerticalScale(float value) const override;
FloatPoint3D resolve3dPoint(const FloatPoint3D&) const override;
- IntRect sourceImageRect() const override { return m_absoluteSourceDrawingRegion; }
-
private:
- SVGFilter(const IntRect& absoluteSourceDrawingRegion, const FloatRect& referenceBox, const FloatRect& filterRegion, bool effectBBoxMode);
+ SVGFilter(const FloatRect& referenceBox, const FloatRect& filterRegion, bool effectBBoxMode);
- IntRect m_absoluteSourceDrawingRegion;
bool m_effectBBoxMode;
};
« no previous file with comments | « Source/core/paint/SVGFilterPainter.cpp ('k') | Source/core/svg/graphics/filters/SVGFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698