Title: [116557] trunk/Source/WebCore
Revision
116557
Author
[email protected]
Date
2012-05-09 14:20:08 -0700 (Wed, 09 May 2012)

Log Message

Remove some isSVGFoo methods
https://bugs.webkit.org/show_bug.cgi?id=86009

Patch by Rob Buis <[email protected]> on 2012-05-09
Reviewed by Eric Seidel.

These are not used at the moment and were probably just copy and pasted from
isSVGFoo methods in RenderObject.h.

* rendering/RenderObject.h:
* rendering/svg/RenderSVGEllipse.h:
(RenderSVGEllipse):
* rendering/svg/RenderSVGRect.h:
(RenderSVGRect):
* rendering/svg/RenderSVGShape.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (116556 => 116557)


--- trunk/Source/WebCore/ChangeLog	2012-05-09 21:17:35 UTC (rev 116556)
+++ trunk/Source/WebCore/ChangeLog	2012-05-09 21:20:08 UTC (rev 116557)
@@ -1,3 +1,20 @@
+2012-05-09  Rob Buis  <[email protected]>
+
+        Remove some isSVGFoo methods
+        https://bugs.webkit.org/show_bug.cgi?id=86009
+
+        Reviewed by Eric Seidel.
+
+        These are not used at the moment and were probably just copy and pasted from
+        isSVGFoo methods in RenderObject.h.
+
+        * rendering/RenderObject.h:
+        * rendering/svg/RenderSVGEllipse.h:
+        (RenderSVGEllipse):
+        * rendering/svg/RenderSVGRect.h:
+        (RenderSVGRect):
+        * rendering/svg/RenderSVGShape.h:
+
 2012-05-09  Ian Vollick  <[email protected]>
 
         [chromium] Add impl-thread support for fill-mode and direction css animation properties

Modified: trunk/Source/WebCore/rendering/RenderObject.h (116556 => 116557)


--- trunk/Source/WebCore/rendering/RenderObject.h	2012-05-09 21:17:35 UTC (rev 116556)
+++ trunk/Source/WebCore/rendering/RenderObject.h	2012-05-09 21:20:08 UTC (rev 116557)
@@ -418,7 +418,6 @@
     virtual bool isSVGGradientStop() const { return false; }
     virtual bool isSVGHiddenContainer() const { return false; }
     virtual bool isSVGPath() const { return false; }
-    virtual bool isSVGRect() const { return false; }
     virtual bool isSVGShape() const { return false; }
     virtual bool isSVGText() const { return false; }
     virtual bool isSVGTextPath() const { return false; }

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGEllipse.h (116556 => 116557)


--- trunk/Source/WebCore/rendering/svg/RenderSVGEllipse.h	2012-05-09 21:17:35 UTC (rev 116556)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGEllipse.h	2012-05-09 21:20:08 UTC (rev 116557)
@@ -39,7 +39,6 @@
     virtual ~RenderSVGEllipse();
 
 private:
-    virtual bool isSVGEllipse() const { return true; }
     virtual const char* renderName() const { return "RenderSVGEllipse"; }
 
     virtual void createShape();

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGRect.h (116556 => 116557)


--- trunk/Source/WebCore/rendering/svg/RenderSVGRect.h	2012-05-09 21:17:35 UTC (rev 116556)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGRect.h	2012-05-09 21:20:08 UTC (rev 116557)
@@ -40,7 +40,6 @@
     virtual ~RenderSVGRect();
 
 private:
-    virtual bool isSVGRect() const { return true; }
     virtual const char* renderName() const { return "RenderSVGRect"; }
 
     virtual void createShape();

Modified: trunk/Source/WebCore/rendering/svg/RenderSVGShape.h (116556 => 116557)


--- trunk/Source/WebCore/rendering/svg/RenderSVGShape.h	2012-05-09 21:17:35 UTC (rev 116556)
+++ trunk/Source/WebCore/rendering/svg/RenderSVGShape.h	2012-05-09 21:20:08 UTC (rev 116557)
@@ -109,7 +109,6 @@
 
     virtual bool isSVGShape() const { return true; }
     virtual const char* renderName() const { return "RenderSVGShape"; }
-    virtual bool isRoundedRect() { return false; }
 
     virtual void layout();
     virtual void paint(PaintInfo&, const LayoutPoint&);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to