| Index: third_party/WebKit/Source/core/workers/WorkerThreadStartupData.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerThreadStartupData.cpp b/third_party/WebKit/Source/core/workers/WorkerThreadStartupData.cpp
|
| index 659d28b060eb451a8f465f1b1072d6829cc5e8eb..64861e265123892a2f8fbefc238b81afa46c0a76 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerThreadStartupData.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerThreadStartupData.cpp
|
| @@ -36,12 +36,13 @@
|
|
|
| namespace blink {
|
|
|
| -WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, std::unique_ptr<Vector<char>> cachedMetaData, WorkerThreadStartMode startMode, const Vector<CSPHeaderAndType>* contentSecurityPolicyHeaders, const SecurityOrigin* starterOrigin, WorkerClients* workerClients, WebAddressSpace addressSpace, const Vector<String>* originTrialTokens, V8CacheOptions v8CacheOptions)
|
| +WorkerThreadStartupData::WorkerThreadStartupData(const KURL& scriptURL, const String& userAgent, const String& sourceCode, std::unique_ptr<Vector<char>> cachedMetaData, WorkerThreadStartMode startMode, const Vector<CSPHeaderAndType>* contentSecurityPolicyHeaders, const String& referrerPolicy, const SecurityOrigin* starterOrigin, WorkerClients* workerClients, WebAddressSpace addressSpace, const Vector<String>* originTrialTokens, V8CacheOptions v8CacheOptions)
|
| : m_scriptURL(scriptURL.copy())
|
| , m_userAgent(userAgent.isolatedCopy())
|
| , m_sourceCode(sourceCode.isolatedCopy())
|
| , m_cachedMetaData(std::move(cachedMetaData))
|
| , m_startMode(startMode)
|
| + , m_referrerPolicy(referrerPolicy.isolatedCopy())
|
| , m_starterOriginPrivilegeData(starterOrigin ? starterOrigin->createPrivilegeData() : nullptr)
|
| , m_workerClients(workerClients)
|
| , m_addressSpace(addressSpace)
|
|
|