| Index: Source/core/workers/WorkerGlobalScope.cpp
|
| diff --git a/Source/core/workers/WorkerGlobalScope.cpp b/Source/core/workers/WorkerGlobalScope.cpp
|
| index e7e302d8187271df8ca5752750af342b6bd42587..4847c3c9f907b3948365c67fe03ae70c5f80d3c1 100644
|
| --- a/Source/core/workers/WorkerGlobalScope.cpp
|
| +++ b/Source/core/workers/WorkerGlobalScope.cpp
|
| @@ -73,7 +73,7 @@ public:
|
| virtual bool isCleanupTask() const { return true; }
|
| };
|
|
|
| -WorkerGlobalScope::WorkerGlobalScope(const KURL& url, const String& userAgent, WorkerThread* thread, double timeOrigin, PassOwnPtr<WorkerClients> workerClients)
|
| +WorkerGlobalScope::WorkerGlobalScope(const KURL& url, const String& userAgent, WorkerThread* thread, double timeOrigin, PassOwnPtr<WorkerClients> workerClients, PassOwnPtr<WorkerSettings> settings)
|
| : m_url(url)
|
| , m_userAgent(userAgent)
|
| , m_script(adoptPtr(new WorkerScriptController(*this)))
|
| @@ -83,6 +83,7 @@ WorkerGlobalScope::WorkerGlobalScope(const KURL& url, const String& userAgent, W
|
| , m_eventQueue(WorkerEventQueue::create(this))
|
| , m_workerClients(workerClients)
|
| , m_timeOrigin(timeOrigin)
|
| + , m_workerSettings(settings)
|
| {
|
| ScriptWrappable::init(this);
|
| setClient(this);
|
|
|