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

Changeset 176503 in webkit


Ignore:
Timestamp:
Nov 22, 2014, 1:44:21 AM (12 years ago)
Author:
Csaba Osztrogonác
Message:

URTBF after r176459 to fix GTK build.

  • platform/ScrollAnimatorNone.cpp:

(WebCore::ScrollAnimatorNone::ScrollAnimatorNone):
(WebCore::ScrollAnimatorNone::requestAnimationTimerFired):

  • platform/ScrollAnimatorNone.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r176502 r176503  
     12014-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
    1102014-11-22  Andreas Kling  <akling@apple.com>
    211
  • trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp

    r175743 r176503  
    375375    , m_startTime(0)
    376376#if USE(REQUEST_ANIMATION_FRAME_TIMER)
    377     , m_animationTimer(this, &ScrollAnimatorNone::requestAnimationTimerFired)
     377    , m_animationTimer(*this, &ScrollAnimatorNone::requestAnimationTimerFired)
    378378#else
    379379    , m_animationActive(false)
     
    492492
    493493#if USE(REQUEST_ANIMATION_FRAME_TIMER)
    494 void ScrollAnimatorNone::requestAnimationTimerFired(Timer*)
     494void ScrollAnimatorNone::requestAnimationTimerFired()
    495495{
    496496    animationTimerFired();
  • trunk/Source/WebCore/platform/ScrollAnimatorNone.h

    r175743 r176503  
    146146
    147147#if USE(REQUEST_ANIMATION_FRAME_TIMER)
    148     void requestAnimationTimerFired(Timer*);
     148    void requestAnimationTimerFired();
    149149    void startNextTimer(double delay);
    150150#else
Note: See TracChangeset for help on using the changeset viewer.