Index: Source/core/svg/SVGFEDiffuseLightingElement.h |
diff --git a/Source/core/svg/SVGFEDiffuseLightingElement.h b/Source/core/svg/SVGFEDiffuseLightingElement.h |
index 9f438772d71e2285341a29b11d439f55b5acb0a7..252e16de1ea798a51bb2de5588d2354b7e910c1f 100644 |
--- a/Source/core/svg/SVGFEDiffuseLightingElement.h |
+++ b/Source/core/svg/SVGFEDiffuseLightingElement.h |
@@ -22,6 +22,7 @@ |
#ifndef SVGFEDiffuseLightingElement_h |
#define SVGFEDiffuseLightingElement_h |
+#include "SVGNames.h" |
#include "core/svg/SVGFELightElement.h" |
#include "core/svg/SVGFilterPrimitiveStandardAttributes.h" |
@@ -56,6 +57,12 @@ private: |
END_DECLARE_ANIMATED_PROPERTIES |
}; |
+inline SVGFEDiffuseLightingElement* toSVGFEDiffuseLightingElement(Node* node) |
+{ |
+ ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(SVGNames::feDiffuseLightingTag)); |
+ return static_cast<SVGFEDiffuseLightingElement*>(node); |
+} |
+ |
} // namespace WebCore |
#endif |