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

Changeset 176466 in webkit


Ignore:
Timestamp:
Nov 21, 2014, 12:44:22 PM (12 years ago)
Author:
andersca@apple.com
Message:

More Windows build fixes.

  • platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp:

(WebCore::LegacyCACFLayerTreeHost::LegacyCACFLayerTreeHost):
(WebCore::LegacyCACFLayerTreeHost::renderTimerFired):

  • platform/graphics/ca/win/LegacyCACFLayerTreeHost.h:
  • platform/mock/GeolocationClientMock.cpp:

(WebCore::GeolocationClientMock::GeolocationClientMock):
(WebCore::GeolocationClientMock::permissionTimerFired):
(WebCore::GeolocationClientMock::controllerTimerFired):

  • platform/mock/GeolocationClientMock.h:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r176465 r176466  
     12014-11-21  Anders Carlsson  <andersca@apple.com>
     2
     3        More Windows build fixes.
     4
     5        * platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp:
     6        (WebCore::LegacyCACFLayerTreeHost::LegacyCACFLayerTreeHost):
     7        (WebCore::LegacyCACFLayerTreeHost::renderTimerFired):
     8        * platform/graphics/ca/win/LegacyCACFLayerTreeHost.h:
     9        * platform/mock/GeolocationClientMock.cpp:
     10        (WebCore::GeolocationClientMock::GeolocationClientMock):
     11        (WebCore::GeolocationClientMock::permissionTimerFired):
     12        (WebCore::GeolocationClientMock::controllerTimerFired):
     13        * platform/mock/GeolocationClientMock.h:
     14
    1152014-11-21  Andreas Kling  <akling@apple.com>
    216
  • trunk/Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp

    r175719 r176466  
    9999
    100100LegacyCACFLayerTreeHost::LegacyCACFLayerTreeHost()
    101     : m_renderTimer(this, &LegacyCACFLayerTreeHost::renderTimerFired)
     101    : m_renderTimer(*this, &LegacyCACFLayerTreeHost::renderTimerFired)
    102102    , m_context(wkCACFContextCreate())
    103103    , m_mightBeAbleToCreateDeviceLater(true)
     
    225225}
    226226
    227 void LegacyCACFLayerTreeHost::renderTimerFired(Timer*)
     227void LegacyCACFLayerTreeHost::renderTimerFired()
    228228{
    229229    paint();
  • trunk/Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.h

    r175719 r176466  
    5151
    5252    void renderSoon();
    53     void renderTimerFired(Timer*);
     53    void renderTimerFired();
    5454
    5555    virtual void initializeContext(void* userData, PlatformCALayer*);
  • trunk/Source/WebCore/platform/mock/GeolocationClientMock.cpp

    r175719 r176466  
    4444    : m_controller(0)
    4545    , m_hasError(false)
    46     , m_controllerTimer(this, &GeolocationClientMock::controllerTimerFired)
    47     , m_permissionTimer(this, &GeolocationClientMock::permissionTimerFired)
     46    , m_controllerTimer(*this, &GeolocationClientMock::controllerTimerFired)
     47    , m_permissionTimer(*this, &GeolocationClientMock::permissionTimerFired)
    4848    , m_isActive(false)
    4949    , m_permissionState(PermissionStateUnset)
     
    110110}
    111111
    112 void GeolocationClientMock::permissionTimerFired(WebCore::Timer* timer)
     112void GeolocationClientMock::permissionTimerFired()
    113113{
    114     ASSERT_UNUSED(timer, timer == &m_permissionTimer);
    115114    ASSERT(m_permissionState != PermissionStateUnset);
    116115    bool allowed = m_permissionState == PermissionStateAllowed;
     
    170169}
    171170
    172 void GeolocationClientMock::controllerTimerFired(Timer* timer)
     171void GeolocationClientMock::controllerTimerFired()
    173172{
    174     ASSERT_UNUSED(timer, timer == &m_controllerTimer);
    175173    ASSERT(m_controller);
    176174
  • trunk/Source/WebCore/platform/mock/GeolocationClientMock.h

    r175719 r176466  
    7171private:
    7272    void asyncUpdateController();
    73     void controllerTimerFired(Timer*);
     73    void controllerTimerFired();
    7474
    7575    void asyncUpdatePermission();
    76     void permissionTimerFired(Timer*);
     76    void permissionTimerFired();
    7777
    7878    void clearError();
Note: See TracChangeset for help on using the changeset viewer.