| Index: Source/core/workers/WorkerContext.cpp
|
| diff --git a/Source/core/workers/WorkerContext.cpp b/Source/core/workers/WorkerContext.cpp
|
| index 8b7f3e3dfac21d53233ba8b46b36b791d8541373..5e7a336c9a0e37417082cf0bee94a00a7d1ae86a 100644
|
| --- a/Source/core/workers/WorkerContext.cpp
|
| +++ b/Source/core/workers/WorkerContext.cpp
|
| @@ -82,7 +82,7 @@ public:
|
| virtual bool isCleanupTask() const { return true; }
|
| };
|
|
|
| -WorkerContext::WorkerContext(const KURL& url, const String& userAgent, PassOwnPtr<GroupSettings> settings, WorkerThread* thread, PassRefPtr<SecurityOrigin> topOrigin)
|
| +WorkerContext::WorkerContext(const KURL& url, const String& userAgent, PassOwnPtr<GroupSettings> settings, WorkerThread* thread, PassRefPtr<SecurityOrigin> topOrigin, double timeOrigin)
|
| : m_url(url)
|
| , m_userAgent(userAgent)
|
| , m_groupSettings(settings)
|
| @@ -92,6 +92,7 @@ WorkerContext::WorkerContext(const KURL& url, const String& userAgent, PassOwnPt
|
| , m_closing(false)
|
| , m_eventQueue(WorkerEventQueue::create(this))
|
| , m_topOrigin(topOrigin)
|
| + , m_timeOrigin(timeOrigin)
|
| {
|
| ScriptWrappable::init(this);
|
| setSecurityOrigin(SecurityOrigin::create(url));
|
|
|