| Index: third_party/WebKit/Source/core/workers/WorkerScriptLoader.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerScriptLoader.h b/third_party/WebKit/Source/core/workers/WorkerScriptLoader.h
|
| index 29d62577a0a89c6b41add162954ce6c63dbf4038..7762a0fa094e92642127631ad7c5b833d7c55c26 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerScriptLoader.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerScriptLoader.h
|
| @@ -84,6 +84,8 @@ public:
|
|
|
| WebAddressSpace responseAddressSpace() const { return m_responseAddressSpace; }
|
|
|
| + const Vector<String>* originTrialTokens() const { return m_originTrialTokens.get(); }
|
| +
|
| // ThreadableLoaderClient
|
| void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override;
|
| void didReceiveData(const char* data, unsigned dataLength) override;
|
| @@ -124,6 +126,7 @@ private:
|
| WebURLRequest::RequestContext m_requestContext;
|
| Persistent<ContentSecurityPolicy> m_contentSecurityPolicy;
|
| WebAddressSpace m_responseAddressSpace;
|
| + std::unique_ptr<Vector<String>> m_originTrialTokens;
|
| };
|
|
|
| } // namespace blink
|
|
|