Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGRectElement.h
index 36297b0..4eada17 100644 (file)
 #ifndef SVGRectElement_h
 #define SVGRectElement_h
 
-#include "SVGNames.h"
+#include "core/SVGNames.h"
 #include "core/svg/SVGAnimatedBoolean.h"
 #include "core/svg/SVGAnimatedLength.h"
 #include "core/svg/SVGGeometryElement.h"
 
-namespace WebCore {
+namespace blink {
 
 class SVGRectElement FINAL : public SVGGeometryElement {
+    DEFINE_WRAPPERTYPEINFO();
 public:
-    static PassRefPtr<SVGRectElement> create(Document&);
+    DECLARE_NODE_FACTORY(SVGRectElement);
 
     SVGAnimatedLength* x() const { return m_x.get(); }
     SVGAnimatedLength* y() const { return m_y.get(); }
@@ -58,6 +59,6 @@ private:
     RefPtr<SVGAnimatedLength> m_ry;
 };
 
-} // namespace WebCore
+} // namespace blink
 
-#endif
+#endif // SVGRectElement_h