Changeset 176503 in webkit
- Timestamp:
- Nov 22, 2014, 1:44:21 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/ScrollAnimatorNone.cpp (modified) (2 diffs)
-
platform/ScrollAnimatorNone.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176502 r176503 1 2014-11-22 Csaba Osztrogonác <ossy@webkit.org> 2 3 URTBF after r176459 to fix GTK build. 4 5 * platform/ScrollAnimatorNone.cpp: 6 (WebCore::ScrollAnimatorNone::ScrollAnimatorNone): 7 (WebCore::ScrollAnimatorNone::requestAnimationTimerFired): 8 * platform/ScrollAnimatorNone.h: 9 1 10 2014-11-22 Andreas Kling <akling@apple.com> 2 11 -
trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp
r175743 r176503 375 375 , m_startTime(0) 376 376 #if USE(REQUEST_ANIMATION_FRAME_TIMER) 377 , m_animationTimer( this, &ScrollAnimatorNone::requestAnimationTimerFired)377 , m_animationTimer(*this, &ScrollAnimatorNone::requestAnimationTimerFired) 378 378 #else 379 379 , m_animationActive(false) … … 492 492 493 493 #if USE(REQUEST_ANIMATION_FRAME_TIMER) 494 void ScrollAnimatorNone::requestAnimationTimerFired( Timer*)494 void ScrollAnimatorNone::requestAnimationTimerFired() 495 495 { 496 496 animationTimerFired(); -
trunk/Source/WebCore/platform/ScrollAnimatorNone.h
r175743 r176503 146 146 147 147 #if USE(REQUEST_ANIMATION_FRAME_TIMER) 148 void requestAnimationTimerFired( Timer*);148 void requestAnimationTimerFired(); 149 149 void startNextTimer(double delay); 150 150 #else
Note:
See TracChangeset
for help on using the changeset viewer.