Changeset 152089 in webkit


Ignore:
Timestamp:
Jun 27, 2013, 3:35:07 AM (12 years ago)
Author:
zarvai@inf.u-szeged.hu
Message:

Buildfix for !ENABLE(SVG) builds.

Reviewed by Csaba Osztrogonác.

Moving RenderObject::hasAspectRatio() outside from ENABLE(SVG) guard.

  • rendering/RenderObject.h:

(WebCore::RenderObject::hasAspectRatio):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152088 r152089  
     12013-06-27  Zoltan Arvai  <zarvai@inf.u-szeged.hu>
     2
     3        Buildfix for !ENABLE(SVG) builds.
     4
     5        Reviewed by Csaba Osztrogonác.
     6
     7        Moving RenderObject::hasAspectRatio() outside from ENABLE(SVG) guard.
     8
     9        * rendering/RenderObject.h:
     10        (WebCore::RenderObject::hasAspectRatio):
     11
    1122013-06-27  Kangil Han  <kangil.han@samsung.com>
    213
  • trunk/Source/WebCore/rendering/RenderObject.h

    r151997 r152089  
    479479    virtual bool isSVGResourceFilterPrimitive() const { return false; }
    480480
    481     bool hasAspectRatio() const { return isReplaced() && (isImage() || isVideo() || isCanvas()); }
    482    
    483481    virtual RenderSVGResourceContainer* toRenderSVGResourceContainer();
    484482
     
    517515#endif
    518516
     517    bool hasAspectRatio() const { return isReplaced() && (isImage() || isVideo() || isCanvas()); }
    519518    bool isAnonymous() const { return m_bitfields.isAnonymous(); }
    520519    bool isAnonymousBlock() const
Note: See TracChangeset for help on using the changeset viewer.