This is to prepare for the addition of WorkerEventLoop, which is needed to integrate DOMTimer with HTML5 event loop.
<rdar://problem/56396749>
Created attachment 381274 [details] Cleanup
Comment on attachment 381274 [details] Cleanup View in context: https://bugs.webkit.org/attachment.cgi?id=381274&action=review > Source/WebCore/dom/AbstractEventLoop.h:40 > +class AbstractEventLoop : public RefCounted<AbstractEventLoop> { > + WTF_MAKE_FAST_ALLOCATED; RefCounted is WTF_MAKE_FAST_ALLOCATED by default. > Source/WebCore/dom/WindowEventLoop.h:37 > +class WindowEventLoop final : public AbstractEventLoop { > WTF_MAKE_FAST_ALLOCATED; Not needed here either.
(In reply to Antti Koivisto from comment #3) > Comment on attachment 381274 [details] > Cleanup > > View in context: > https://bugs.webkit.org/attachment.cgi?id=381274&action=review > > > Source/WebCore/dom/AbstractEventLoop.h:40 > > +class AbstractEventLoop : public RefCounted<AbstractEventLoop> { > > + WTF_MAKE_FAST_ALLOCATED; > > RefCounted is WTF_MAKE_FAST_ALLOCATED by default. Good point. Removed. > > Source/WebCore/dom/WindowEventLoop.h:37 > > +class WindowEventLoop final : public AbstractEventLoop { > > WTF_MAKE_FAST_ALLOCATED; > > Not needed here either. Ditto.
Committed r251308: <https://trac.webkit.org/changeset/251308>