Changeset 116557 in webkit


Ignore:
Timestamp:
May 9, 2012 2:20:08 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Rob Buis <rbuis@rim.com> 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:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116554 r116557  
     12012-05-09  Rob Buis  <rbuis@rim.com>
     2
     3        Remove some isSVGFoo methods
     4        https://bugs.webkit.org/show_bug.cgi?id=86009
     5
     6        Reviewed by Eric Seidel.
     7
     8        These are not used at the moment and were probably just copy and pasted from
     9        isSVGFoo methods in RenderObject.h.
     10
     11        * rendering/RenderObject.h:
     12        * rendering/svg/RenderSVGEllipse.h:
     13        (RenderSVGEllipse):
     14        * rendering/svg/RenderSVGRect.h:
     15        (RenderSVGRect):
     16        * rendering/svg/RenderSVGShape.h:
     17
    1182012-05-09  Ian Vollick  <vollick@chromium.org>
    219
  • trunk/Source/WebCore/rendering/RenderObject.h

    r116551 r116557  
    419419    virtual bool isSVGHiddenContainer() const { return false; }
    420420    virtual bool isSVGPath() const { return false; }
    421     virtual bool isSVGRect() const { return false; }
    422421    virtual bool isSVGShape() const { return false; }
    423422    virtual bool isSVGText() const { return false; }
  • trunk/Source/WebCore/rendering/svg/RenderSVGEllipse.h

    r112667 r116557  
    4040
    4141private:
    42     virtual bool isSVGEllipse() const { return true; }
    4342    virtual const char* renderName() const { return "RenderSVGEllipse"; }
    4443
  • trunk/Source/WebCore/rendering/svg/RenderSVGRect.h

    r113496 r116557  
    4141
    4242private:
    43     virtual bool isSVGRect() const { return true; }
    4443    virtual const char* renderName() const { return "RenderSVGRect"; }
    4544
  • trunk/Source/WebCore/rendering/svg/RenderSVGShape.h

    r115196 r116557  
    110110    virtual bool isSVGShape() const { return true; }
    111111    virtual const char* renderName() const { return "RenderSVGShape"; }
    112     virtual bool isRoundedRect() { return false; }
    113112
    114113    virtual void layout();
Note: See TracChangeset for help on using the changeset viewer.