Chromium Code Reviews| 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; |
|
haraken
2016/04/28 19:29:30
Per yutak's PSA (https://groups.google.com/a/chrom
Marijn Kruisselbrink
2016/04/28 21:54:24
I'm a bit confused if I should or shouldn't be usi
haraken
2016/04/29 06:46:32
I looked at the emails and it looks like he's sayi
|
| }; |
| } // namespace blink |