Index: Source/core/workers/WorkerThreadStartupData.cpp |
diff --git a/Source/core/workers/WorkerThreadStartupData.cpp b/Source/core/workers/WorkerThreadStartupData.cpp |
index ecbb38ca797875d95c8ec5a8de74badf07bf2a88..91a8b7a22da37957dc4ba2ae128b7b1d143ff3f8 100644 |
--- a/Source/core/workers/WorkerThreadStartupData.cpp |
+++ b/Source/core/workers/WorkerThreadStartupData.cpp |
@@ -35,13 +35,14 @@ |
namespace blink { |
-WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicyHeaderType contentSecurityPolicyType, PassOwnPtrWillBeRawPtr<WorkerClients> workerClients) |
+WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode, const String& contentSecurityPolicy, ContentSecurityPolicyHeaderType contentSecurityPolicyType, const SecurityOrigin* starterOrigin, PassOwnPtrWillBeRawPtr<WorkerClients> workerClients) |
: m_scriptURL(scriptURL.copy()) |
, m_userAgent(userAgent.isolatedCopy()) |
, m_sourceCode(sourceCode.isolatedCopy()) |
, m_startMode(startMode) |
, m_contentSecurityPolicy(contentSecurityPolicy.isolatedCopy()) |
, m_contentSecurityPolicyType(contentSecurityPolicyType) |
+ , m_starterOrigin(starterOrigin) |
, m_workerClients(workerClients) |
{ |
} |