Changeset 176466 in webkit
- Timestamp:
- Nov 21, 2014, 12:44:22 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp (modified) (2 diffs)
-
platform/graphics/ca/win/LegacyCACFLayerTreeHost.h (modified) (1 diff)
-
platform/mock/GeolocationClientMock.cpp (modified) (3 diffs)
-
platform/mock/GeolocationClientMock.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176465 r176466 1 2014-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 1 15 2014-11-21 Andreas Kling <akling@apple.com> 2 16 -
trunk/Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp
r175719 r176466 99 99 100 100 LegacyCACFLayerTreeHost::LegacyCACFLayerTreeHost() 101 : m_renderTimer( this, &LegacyCACFLayerTreeHost::renderTimerFired)101 : m_renderTimer(*this, &LegacyCACFLayerTreeHost::renderTimerFired) 102 102 , m_context(wkCACFContextCreate()) 103 103 , m_mightBeAbleToCreateDeviceLater(true) … … 225 225 } 226 226 227 void LegacyCACFLayerTreeHost::renderTimerFired( Timer*)227 void LegacyCACFLayerTreeHost::renderTimerFired() 228 228 { 229 229 paint(); -
trunk/Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.h
r175719 r176466 51 51 52 52 void renderSoon(); 53 void renderTimerFired( Timer*);53 void renderTimerFired(); 54 54 55 55 virtual void initializeContext(void* userData, PlatformCALayer*); -
trunk/Source/WebCore/platform/mock/GeolocationClientMock.cpp
r175719 r176466 44 44 : m_controller(0) 45 45 , 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) 48 48 , m_isActive(false) 49 49 , m_permissionState(PermissionStateUnset) … … 110 110 } 111 111 112 void GeolocationClientMock::permissionTimerFired( WebCore::Timer* timer)112 void GeolocationClientMock::permissionTimerFired() 113 113 { 114 ASSERT_UNUSED(timer, timer == &m_permissionTimer);115 114 ASSERT(m_permissionState != PermissionStateUnset); 116 115 bool allowed = m_permissionState == PermissionStateAllowed; … … 170 169 } 171 170 172 void GeolocationClientMock::controllerTimerFired( Timer* timer)171 void GeolocationClientMock::controllerTimerFired() 173 172 { 174 ASSERT_UNUSED(timer, timer == &m_controllerTimer);175 173 ASSERT(m_controller); 176 174 -
trunk/Source/WebCore/platform/mock/GeolocationClientMock.h
r175719 r176466 71 71 private: 72 72 void asyncUpdateController(); 73 void controllerTimerFired( Timer*);73 void controllerTimerFired(); 74 74 75 75 void asyncUpdatePermission(); 76 void permissionTimerFired( Timer*);76 void permissionTimerFired(); 77 77 78 78 void clearError();
Note:
See TracChangeset
for help on using the changeset viewer.