Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / rendering / svg / RenderSVGPath.h
index 48b3676..4448cbb 100644 (file)
@@ -28,7 +28,7 @@
 
 #include "core/rendering/svg/RenderSVGShape.h"
 
-namespace WebCore {
+namespace blink {
 
 class RenderSVGPath FINAL : public RenderSVGShape {
 public:
@@ -36,7 +36,6 @@ public:
     virtual ~RenderSVGPath();
 
 private:
-    virtual bool isSVGPath() const OVERRIDE { return true; }
     virtual const char* renderName() const OVERRIDE { return "RenderSVGPath"; }
 
     virtual void updateShapeFromElement() OVERRIDE;
@@ -53,8 +52,6 @@ private:
     Vector<FloatPoint> m_zeroLengthLinecapLocations;
 };
 
-DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGPath, isSVGPath());
-
 }
 
 #endif