| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/compositorworker/CompositorWorkerGlobalScope.h" | 5 #include "modules/compositorworker/CompositorWorkerGlobalScope.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/SerializedScriptValue.h" | 7 #include "bindings/core/v8/SerializedScriptValue.h" |
| 8 #include "core/workers/InProcessWorkerObjectProxy.h" | 8 #include "core/workers/InProcessWorkerObjectProxy.h" |
| 9 #include "core/workers/WorkerThreadStartupData.h" | 9 #include "core/workers/WorkerThreadStartupData.h" |
| 10 #include "modules/EventTargetModules.h" | 10 #include "modules/EventTargetModules.h" |
| 11 #include "modules/compositorworker/CompositorWorkerThread.h" | 11 #include "modules/compositorworker/CompositorWorkerThread.h" |
| 12 #include <memory> | 12 #include <memory> |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 CompositorWorkerGlobalScope* CompositorWorkerGlobalScope::create(CompositorWorke
rThread* thread, std::unique_ptr<WorkerThreadStartupData> startupData, double ti
meOrigin) | 16 CompositorWorkerGlobalScope* CompositorWorkerGlobalScope::create(CompositorWorke
rThread* thread, std::unique_ptr<WorkerThreadStartupData> startupData, double ti
meOrigin) |
| 17 { | 17 { |
| 18 // Note: startupData is finalized on return. After the relevant parts has be
en | 18 // Note: startupData is finalized on return. After the relevant parts has be
en |
| 19 // passed along to the created 'context'. | 19 // passed along to the created 'context'. |
| 20 CompositorWorkerGlobalScope* context = new CompositorWorkerGlobalScope(start
upData->m_scriptURL, startupData->m_userAgent, thread, timeOrigin, std::move(sta
rtupData->m_starterOriginPrivilegeData), startupData->m_workerClients.release())
; | 20 CompositorWorkerGlobalScope* context = new CompositorWorkerGlobalScope(start
upData->m_scriptURL, startupData->m_userAgent, thread, timeOrigin, std::move(sta
rtupData->m_starterOriginPrivilegeData), startupData->m_workerClients.release())
; |
| 21 context->applyContentSecurityPolicyFromVector(*startupData->m_contentSecurit
yPolicyHeaders); | 21 context->applyContentSecurityPolicyFromVector(*startupData->m_contentSecurit
yPolicyHeaders); |
| 22 if (!startupData->m_referrerPolicy.isNull()) |
| 23 context->parseAndSetReferrerPolicy(startupData->m_referrerPolicy); |
| 22 context->setAddressSpace(startupData->m_addressSpace); | 24 context->setAddressSpace(startupData->m_addressSpace); |
| 23 return context; | 25 return context; |
| 24 } | 26 } |
| 25 | 27 |
| 26 CompositorWorkerGlobalScope::CompositorWorkerGlobalScope(const KURL& url, const
String& userAgent, CompositorWorkerThread* thread, double timeOrigin, std::uniqu
e_ptr<SecurityOrigin::PrivilegeData> starterOriginPrivilegeData, WorkerClients*
workerClients) | 28 CompositorWorkerGlobalScope::CompositorWorkerGlobalScope(const KURL& url, const
String& userAgent, CompositorWorkerThread* thread, double timeOrigin, std::uniqu
e_ptr<SecurityOrigin::PrivilegeData> starterOriginPrivilegeData, WorkerClients*
workerClients) |
| 27 : WorkerGlobalScope(url, userAgent, thread, timeOrigin, std::move(starterOri
ginPrivilegeData), workerClients) | 29 : WorkerGlobalScope(url, userAgent, thread, timeOrigin, std::move(starterOri
ginPrivilegeData), workerClients) |
| 28 , m_executingAnimationFrameCallbacks(false) | 30 , m_executingAnimationFrameCallbacks(false) |
| 29 , m_callbackCollection(this) | 31 , m_callbackCollection(this) |
| 30 { | 32 { |
| 31 CompositorProxyClient::from(clients())->setGlobalScope(this); | 33 CompositorProxyClient::from(clients())->setGlobalScope(this); |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 m_callbackCollection.executeCallbacks(highResTimeMs, highResTimeMs); | 76 m_callbackCollection.executeCallbacks(highResTimeMs, highResTimeMs); |
| 75 return !m_callbackCollection.isEmpty(); | 77 return !m_callbackCollection.isEmpty(); |
| 76 } | 78 } |
| 77 | 79 |
| 78 CompositorWorkerThread* CompositorWorkerGlobalScope::thread() const | 80 CompositorWorkerThread* CompositorWorkerGlobalScope::thread() const |
| 79 { | 81 { |
| 80 return static_cast<CompositorWorkerThread*>(WorkerGlobalScope::thread()); | 82 return static_cast<CompositorWorkerThread*>(WorkerGlobalScope::thread()); |
| 81 } | 83 } |
| 82 | 84 |
| 83 } // namespace blink | 85 } // namespace blink |
| OLD | NEW |