Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / svg / SVGPathSeg.h
index 95d9b04..5549b0d 100644 (file)
 #ifndef SVGPathSeg_h
 #define SVGPathSeg_h
 
-#include "bindings/v8/ScriptWrappable.h"
+#include "bindings/core/v8/ScriptWrappable.h"
 #include "wtf/RefCounted.h"
 #include "wtf/text/WTFString.h"
 
-namespace WebCore {
+namespace blink {
 
 enum ListModification {
     ListModificationUnknown = 0,
@@ -58,12 +58,6 @@ enum SVGPathSegType {
     PathSegCurveToQuadraticSmoothRel = 19
 };
 
-enum SVGPathSegRole {
-    PathSegUnalteredRole = 0,
-    PathSegNormalizedRole = 1,
-    PathSegUndefinedRole = 2
-};
-
 class SVGPropertyBase;
 class SVGPathElement;
 class SVGElement;
@@ -123,6 +117,9 @@ public:
         m_contextElement = contextElement;
     }
 
+    static PassRefPtr<SVGPathSeg> create() { ASSERT_NOT_REACHED(); return nullptr; }
+    PassRefPtr<SVGPathSeg> clone() { ASSERT_NOT_REACHED(); return nullptr; }
+
 protected:
     void commitChange();
 
@@ -132,6 +129,6 @@ private:
     SVGElement* m_contextElement;
 };
 
-} // namespace WebCore
+} // namespace blink
 
 #endif