Changeset 145363 in webkit


Ignore:
Timestamp:
Mar 11, 2013 8:26:17 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] GraphicsLayer: rename notifySyncRequired to notifyFlushRequired
https://bugs.webkit.org/show_bug.cgi?id=111997

Patch by Alberto Garcia <agarcia@igalia.com> on 2013-03-11
Reviewed by Rob Buis.

This changed in r130439 but the old name was introduced again by
mistake in r144465.

  • platform/graphics/blackberry/GraphicsLayerBlackBerry.h:

(WebCore::GraphicsLayerBlackBerry::notifyFlushRequired):

  • platform/graphics/blackberry/LayerWebKitThread.cpp:

(WebCore::LayerWebKitThread::setNeedsCommit):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r145362 r145363  
     12013-03-11  Alberto Garcia  <agarcia@igalia.com>
     2
     3        [BlackBerry] GraphicsLayer: rename notifySyncRequired to notifyFlushRequired
     4        https://bugs.webkit.org/show_bug.cgi?id=111997
     5
     6        Reviewed by Rob Buis.
     7
     8        This changed in r130439 but the old name was introduced again by
     9        mistake in r144465.
     10
     11        * platform/graphics/blackberry/GraphicsLayerBlackBerry.h:
     12        (WebCore::GraphicsLayerBlackBerry::notifyFlushRequired):
     13        * platform/graphics/blackberry/LayerWebKitThread.cpp:
     14        (WebCore::LayerWebKitThread::setNeedsCommit):
     15
    1162013-03-11  Kent Tamura  <tkent@chromium.org>
    217
  • trunk/Source/WebCore/platform/graphics/blackberry/GraphicsLayerBlackBerry.h

    r144465 r145363  
    114114    virtual void setDebugBorder(const Color&, float borderWidth);
    115115
    116     void notifySyncRequired()
     116    void notifyFlushRequired()
    117117    {
    118118        if (m_client)
    119             m_client->notifySyncRequired(this);
     119            m_client->notifyFlushRequired(this);
    120120    }
    121121
  • trunk/Source/WebCore/platform/graphics/blackberry/LayerWebKitThread.cpp

    r144465 r145363  
    170170void LayerWebKitThread::setNeedsCommit()
    171171{
    172     // Call notifySyncRequired(), which in this implementation plumbs through to
     172    // Call notifyFlushRequired(), which in this implementation plumbs through to
    173173    // call scheduleRootLayerCommit() on the WebView, which will cause us to commit
    174174    // changes done on the WebKit thread for display on the Compositing thread.
    175175    if (m_owner)
    176         m_owner->notifySyncRequired();
     176        m_owner->notifyFlushRequired();
    177177}
    178178
Note: See TracChangeset for help on using the changeset viewer.