| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/AnimationWorkletThread.h" | 5 #include "modules/compositorworker/AnimationWorkletThread.h" |
| 6 | 6 |
| 7 #include "core/workers/WorkerThreadStartupData.h" | 7 #include "core/workers/WorkerThreadStartupData.h" |
| 8 #include "modules/compositorworker/AnimationWorkletGlobalScope.h" | 8 #include "modules/compositorworker/AnimationWorkletGlobalScope.h" |
| 9 #include "platform/TraceEvent.h" | 9 #include "platform/tracing/TraceEvent.h" |
| 10 #include "platform/weborigin/SecurityOrigin.h" | 10 #include "platform/weborigin/SecurityOrigin.h" |
| 11 #include "wtf/PtrUtil.h" | 11 #include "wtf/PtrUtil.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 std::unique_ptr<AnimationWorkletThread> AnimationWorkletThread::create(PassRefPt
r<WorkerLoaderProxy> workerLoaderProxy, WorkerReportingProxy& workerReportingPro
xy) | 15 std::unique_ptr<AnimationWorkletThread> AnimationWorkletThread::create(PassRefPt
r<WorkerLoaderProxy> workerLoaderProxy, WorkerReportingProxy& workerReportingPro
xy) |
| 16 { | 16 { |
| 17 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("animation-worklet"), "AnimationWorkl
etThread::create"); | 17 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("animation-worklet"), "AnimationWorkl
etThread::create"); |
| 18 DCHECK(isMainThread()); | 18 DCHECK(isMainThread()); |
| 19 return wrapUnique(new AnimationWorkletThread(std::move(workerLoaderProxy), w
orkerReportingProxy)); | 19 return wrapUnique(new AnimationWorkletThread(std::move(workerLoaderProxy), w
orkerReportingProxy)); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 35 RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(startupData->
m_scriptURL); | 35 RefPtr<SecurityOrigin> securityOrigin = SecurityOrigin::create(startupData->
m_scriptURL); |
| 36 if (startupData->m_starterOriginPrivilegeData) | 36 if (startupData->m_starterOriginPrivilegeData) |
| 37 securityOrigin->transferPrivilegesFrom(std::move(startupData->m_starterO
riginPrivilegeData)); | 37 securityOrigin->transferPrivilegesFrom(std::move(startupData->m_starterO
riginPrivilegeData)); |
| 38 | 38 |
| 39 // TODO(ikilpatrick): The AnimationWorkletGlobalScope will need to store a | 39 // TODO(ikilpatrick): The AnimationWorkletGlobalScope will need to store a |
| 40 // WorkerClients object for using a CompositorProxyClient object. | 40 // WorkerClients object for using a CompositorProxyClient object. |
| 41 return AnimationWorkletGlobalScope::create(startupData->m_scriptURL, startup
Data->m_userAgent, securityOrigin.release(), this->isolate(), this); | 41 return AnimationWorkletGlobalScope::create(startupData->m_scriptURL, startup
Data->m_userAgent, securityOrigin.release(), this->isolate(), this); |
| 42 } | 42 } |
| 43 | 43 |
| 44 } // namespace blink | 44 } // namespace blink |
| OLD | NEW |