Changeset 215447 in webkit


Ignore:
Timestamp:
Apr 17, 2017 8:21:36 PM (7 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] 'WebCore::GraphicsLayerTextureMapper::flushCompositingStated': method with override specifier 'override' did not override any base class methods
https://bugs.webkit.org/show_bug.cgi?id=170928

Patch by Fujii Hironori <Fujii Hironori> on 2017-04-17
Reviewed by Simon Fraser.

Apply the same change of CoordinatedGraphicsLayer.{cpp,h} of r215410 to GraphicsLayerTextureMapper.{cpp,h}.

  • platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:

(WebCore::GraphicsLayerTextureMapper::flushCompositingState): Added the second argument.

  • platform/graphics/texmap/GraphicsLayerTextureMapper.h: Ditto.
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r215446 r215447  
     12017-04-17  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [WinCairo] 'WebCore::GraphicsLayerTextureMapper::flushCompositingStated': method with override specifier 'override' did not override any base class methods
     4        https://bugs.webkit.org/show_bug.cgi?id=170928
     5
     6        Reviewed by Simon Fraser.
     7
     8        Apply the same change of CoordinatedGraphicsLayer.{cpp,h} of r215410 to GraphicsLayerTextureMapper.{cpp,h}.
     9
     10        * platform/graphics/texmap/GraphicsLayerTextureMapper.cpp:
     11        (WebCore::GraphicsLayerTextureMapper::flushCompositingState): Added the second argument.
     12        * platform/graphics/texmap/GraphicsLayerTextureMapper.h: Ditto.
     13
    1142017-04-17  Timothy Horton  <timothy_horton@apple.com>
    215
  • trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp

    r212521 r215447  
    498498}
    499499
    500 void GraphicsLayerTextureMapper::flushCompositingState(const FloatRect& rect)
     500void GraphicsLayerTextureMapper::flushCompositingState(const FloatRect& rect, FlushScope)
    501501{
    502502    if (!m_layer.textureMapper())
  • trunk/Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h

    r208927 r215447  
    8484    void setShowRepaintCounter(bool) override;
    8585
    86     void flushCompositingState(const FloatRect&) override;
     86    void flushCompositingState(const FloatRect&, FlushScope) override;
    8787    void flushCompositingStateForThisLayerOnly() override;
    8888
Note: See TracChangeset for help on using the changeset viewer.