X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=Source%2FWebCore%2Freplay%2FEventLoopInput.h;h=1081ac09c8e949de2af7432e28b77ecbd3c0c745;hp=0795d53245fd3cd86d3b24db96e62cda6da9ff8c;hb=2252541616c4d7172c6d10c54ab66e3a14328efd;hpb=6179fa285cd8c656d89a3ebc5365c1184bbdb39e diff --git a/Source/WebCore/replay/EventLoopInput.h b/Source/WebCore/replay/EventLoopInput.h index 0795d53..1081ac0 100644 --- a/Source/WebCore/replay/EventLoopInput.h +++ b/Source/WebCore/replay/EventLoopInput.h @@ -48,27 +48,18 @@ class EventLoopInputExtent { WTF_MAKE_NONCOPYABLE(EventLoopInputExtent); public: EventLoopInputExtent(JSC::InputCursor&); + EventLoopInputExtent(JSC::InputCursor*); ~EventLoopInputExtent(); private: - JSC::InputCursor& m_cursor; + JSC::InputCursor* m_cursor; }; class EventLoopInputBase : public NondeterministicInputBase { public: - EventLoopInputBase() - : m_timestamp(monotonicallyIncreasingTime()) - { - } - virtual ~EventLoopInputBase() { } virtual InputQueue queue() const override final { return InputQueue::EventLoopInput; } virtual void dispatch(ReplayController&) = 0; - - double timestamp() const { return m_timestamp; } - void setTimestamp(double timestamp) { m_timestamp = timestamp; } -protected: - double m_timestamp; }; template