Changeset 263726 in webkit


Ignore:
Timestamp:
Jun 29, 2020 10:33:36 PM (4 years ago)
Author:
ggaren@apple.com
Message:

Unreviewed, rolling out an accidental change from r263723.

  • wtf/cf/RunLoopCF.cpp:

(WTF::RunLoop::TimerBase::timerFired):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r263724 r263726  
     12020-06-29  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Unreviewed, rolling out an accidental change from r263723.
     4
     5        * wtf/cf/RunLoopCF.cpp:
     6        (WTF::RunLoop::TimerBase::timerFired):
     7
    182020-06-29  Alex Christensen  <achristensen@webkit.org>
    29
  • trunk/Source/WTF/wtf/cf/RunLoopCF.cpp

    r263723 r263726  
    8484// RunLoop::Timer
    8585
    86 void RunLoop::TimerBase::timerFired(CFRunLoopTimerRef cfTimer, void* context)
     86void RunLoop::TimerBase::timerFired(CFRunLoopTimerRef, void* context)
    8787{
    8888    TimerBase* timer = static_cast<TimerBase*>(context);
    8989
    9090    AutodrainedPool pool;
    91 
    92     if (!CFRunLoopTimerDoesRepeat(cfTimer))
    93         timer->stop();
    94 
    9591    timer->fired();
    9692}
Note: See TracChangeset for help on using the changeset viewer.