Chromium Code Reviews| Index: Source/core/svg/SVGTextElement.h |
| diff --git a/Source/core/svg/SVGTextElement.h b/Source/core/svg/SVGTextElement.h |
| index 95be00e5e58eb3d14377294b1fc3922f5e2f5d4d..9590c4bb988a1c17383a51e374e3de80be574a29 100644 |
| --- a/Source/core/svg/SVGTextElement.h |
| +++ b/Source/core/svg/SVGTextElement.h |
| @@ -21,6 +21,7 @@ |
| #ifndef SVGTextElement_h |
| #define SVGTextElement_h |
| +#include "SVGNames.h" |
| #include "core/svg/SVGTextPositioningElement.h" |
| namespace WebCore { |
| @@ -40,6 +41,12 @@ private: |
| virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; |
| }; |
| +inline SVGTextElement* toSVGTextElement(Node* node) |
| +{ |
| + ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(SVGNames::polygonTag)); |
|
tkent
2013/08/30 00:59:23
polygonTag ???
|
| + return static_cast<SVGTextElement*>(node); |
| +} |
| + |
| } // namespace WebCore |
| #endif |