⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 181500 in webkit


Ignore:
Timestamp:
Mar 14, 2015, 1:49:50 PM (11 years ago)
Author:
cavalcantii@gmail.com
Message:

RenderBlock::imageChange() calling const methods on exit
https://bugs.webkit.org/show_bug.cgi?id=142648

Reviewed by Brent Fulgham.

No new tests, no change on behavior.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::imageChanged): Deleted.

  • rendering/RenderBlock.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181499 r181500  
     12015-03-14  Adenilson Cavalcanti  <cavalcantii@gmail.com>
     2
     3        RenderBlock::imageChange() calling const methods on exit
     4        https://bugs.webkit.org/show_bug.cgi?id=142648
     5
     6        Reviewed by Brent Fulgham.
     7
     8        No new tests, no change on behavior.
     9
     10        * rendering/RenderBlock.cpp:
     11        (WebCore::RenderBlock::imageChanged): Deleted.
     12        * rendering/RenderBlock.h:
     13
    1142015-03-14  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
    215
  • trunk/Source/WebCore/rendering/RenderBlock.cpp

    r181398 r181500  
    952952}
    953953
    954 #if ENABLE(CSS_SHAPES)
    955 void RenderBlock::imageChanged(WrappedImagePtr image, const IntRect*)
    956 {
    957     RenderBox::imageChanged(image);
    958 
    959     if (!parent() || !everHadLayout())
    960         return;
    961 }
    962 #endif
    963 
    964954void RenderBlock::preparePaginationBeforeBlockLayout(bool& relayoutChildren)
    965955{
  • trunk/Source/WebCore/rendering/RenderBlock.h

    r181398 r181500  
    303303#endif
    304304
    305 
    306 #if ENABLE(CSS_SHAPES)
    307     virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
    308 #endif
    309 
    310305    virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&) override;
    311306
Note: See TracChangeset for help on using the changeset viewer.