Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGTextElement.h
index a132868..dd52832 100644 (file)
 #ifndef SVGTextElement_h
 #define SVGTextElement_h
 
-#include "SVGNames.h"
+#include "core/SVGNames.h"
 #include "core/svg/SVGTextPositioningElement.h"
 
-namespace WebCore {
+namespace blink {
 
 class SVGTextElement FINAL : public SVGTextPositioningElement {
+    DEFINE_WRAPPERTYPEINFO();
 public:
-    static PassRefPtr<SVGTextElement> create(Document&);
+    DECLARE_NODE_FACTORY(SVGTextElement);
 
     virtual AffineTransform animatedLocalTransform() const OVERRIDE;
 
 private:
     explicit SVGTextElement(Document&);
 
-    virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(); }
-
     virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
 };
 
-} // namespace WebCore
+} // namespace blink
 
-#endif
+#endif // SVGTextElement_h