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

Unified Diff: Source/core/svg/SVGFELightElement.h

Issue 337903003: Map light-source oBB-relative coordinates to the user-space of the filter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/core/svg/SVGFELightElement.h
diff --git a/Source/core/svg/SVGFELightElement.h b/Source/core/svg/SVGFELightElement.h
index 1a84c0dbc45d763639a15e5d36461c7013989e3f..cee98e81bd0042f868ce43122d62b07ef7d7698d 100644
--- a/Source/core/svg/SVGFELightElement.h
+++ b/Source/core/svg/SVGFELightElement.h
@@ -29,11 +29,12 @@
namespace WebCore {
+class Filter;
+
class SVGFELightElement : public SVGElement {
public:
- virtual PassRefPtr<LightSource> lightSource() const = 0;
+ virtual PassRefPtr<LightSource> lightSource(Filter*) const = 0;
static SVGFELightElement* findLightElement(const SVGElement&);
- static PassRefPtr<LightSource> findLightSource(const SVGElement&);
SVGAnimatedNumber* azimuth() { return m_azimuth.get(); }
const SVGAnimatedNumber* azimuth() const { return m_azimuth.get(); }

Powered by Google App Engine
This is Rietveld 408576698