RESOLVED FIXED 218874
Removed DeferrableTaskTimer
https://bugs.webkit.org/show_bug.cgi?id=218874
Summary Removed DeferrableTaskTimer
Geoffrey Garen
Reported 2020-11-12 15:33:53 PST
Removed DeferrableTaskTimer
Attachments
Patch (8.11 KB, patch)
2020-11-13 09:39 PST, Geoffrey Garen
cdumez: review+
Patch for landing (8.45 KB, patch)
2020-11-13 13:30 PST, Geoffrey Garen
no flags
Geoffrey Garen
Comment 1 2020-11-13 09:39:49 PST
Chris Dumez
Comment 2 2020-11-13 10:59:29 PST
Comment on attachment 414054 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=414054&action=review > Source/WebCore/platform/Timer.h:112 > + static void startOneShot(Seconds interval, WTF::Function<void()>&& function) Maybe it's just me but I preferred the previous order: Lambda first and then the delay. BTW, seems weird to call this interval instead of delay given that it is one shot. The reason for my preference is that it would be consistent with window.setTimeout(() => { }, 100); Finally, I wish we could find a better name for this function than startOneShot() given that it is a static. Maybe something like Timer::doAfter() or runAfter() (similarly to dispatch_after()). > Source/WebKit/ChangeLog:12 > + * UIProcess/WebPageProxy.h: Use WTF::RunLoop::Timer instead of Good catch. > Source/WebKit/UIProcess/WebPageProxy.h:2758 > + WTF::RunLoop::Timer<WebPageProxy> m_updateReportedMediaCaptureStateTimer; Why WTF:: ?
Geoffrey Garen
Comment 3 2020-11-13 11:16:20 PST
> > Source/WebCore/platform/Timer.h:112 > > + static void startOneShot(Seconds interval, WTF::Function<void()>&& function) > > Maybe it's just me but I preferred the previous order: Lambda first and then > the delay. BTW, seems weird to call this interval instead of delay given > that it is one shot. > > The reason for my preference is that it would be consistent with > window.setTimeout(() => { }, 100); For the order, my thinking was that Cocoa APIs have the habit of putting the lambda last, and the reasoning is that it reads better because a lambda is a disruptive amount of text that makes it hard to see what comes after. What do you think of that? > Finally, I wish we could find a better name for this function than > startOneShot() given that it is a static. Maybe something like > Timer::doAfter() or runAfter() (similarly to dispatch_after()). How about schedule()? > > Source/WebKit/UIProcess/WebPageProxy.h:2758 > > + WTF::RunLoop::Timer<WebPageProxy> m_updateReportedMediaCaptureStateTimer; > > Why WTF:: ? Will fix.
Chris Dumez
Comment 4 2020-11-13 11:32:56 PST
(In reply to Geoffrey Garen from comment #3) > > > Source/WebCore/platform/Timer.h:112 > > > + static void startOneShot(Seconds interval, WTF::Function<void()>&& function) > > > > Maybe it's just me but I preferred the previous order: Lambda first and then > > the delay. BTW, seems weird to call this interval instead of delay given > > that it is one shot. > > > > The reason for my preference is that it would be consistent with > > window.setTimeout(() => { }, 100); > > For the order, my thinking was that Cocoa APIs have the habit of putting the > lambda last, and the reasoning is that it reads better because a lambda is a > disruptive amount of text that makes it hard to see what comes after. > > What do you think of that? Not a big deal either way. It is true that dispatch_after() takes delay first and lambda last. > > > Finally, I wish we could find a better name for this function than > > startOneShot() given that it is a static. Maybe something like > > Timer::doAfter() or runAfter() (similarly to dispatch_after()). > > How about schedule()? Sure, schedule() would be better IMO. > > > > Source/WebKit/UIProcess/WebPageProxy.h:2758 > > > + WTF::RunLoop::Timer<WebPageProxy> m_updateReportedMediaCaptureStateTimer; > > > > Why WTF:: ? > > Will fix.
Geoffrey Garen
Comment 5 2020-11-13 13:30:33 PST
Created attachment 414087 [details] Patch for landing
EWS
Comment 6 2020-11-13 14:39:17 PST
Committed r269802: <https://trac.webkit.org/changeset/269802> All reviewed patches have been landed. Closing bug and clearing flags on attachment 414087 [details].
Radar WebKit Bug Importer
Comment 7 2020-11-13 14:40:22 PST
Note You need to log in before you can comment on or make changes to this bug.