Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(814)

Side by Side Diff: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletThread.cpp

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Export CompositorAnimator Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/instrumentation/tracing/TraceEvent.h" 9 #include "platform/instrumentation/tracing/TraceEvent.h"
10 #include "platform/weborigin/SecurityOrigin.h" 10 #include "platform/weborigin/SecurityOrigin.h"
(...skipping 24 matching lines...) Expand all
35 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("animation-worklet"), 35 TRACE_EVENT0(TRACE_DISABLED_BY_DEFAULT("animation-worklet"),
36 "AnimationWorkletThread::createWorkerGlobalScope"); 36 "AnimationWorkletThread::createWorkerGlobalScope");
37 37
38 RefPtr<SecurityOrigin> securityOrigin = 38 RefPtr<SecurityOrigin> securityOrigin =
39 SecurityOrigin::create(startupData->m_scriptURL); 39 SecurityOrigin::create(startupData->m_scriptURL);
40 if (startupData->m_starterOriginPrivilegeData) 40 if (startupData->m_starterOriginPrivilegeData)
41 securityOrigin->transferPrivilegesFrom( 41 securityOrigin->transferPrivilegesFrom(
42 std::move(startupData->m_starterOriginPrivilegeData)); 42 std::move(startupData->m_starterOriginPrivilegeData));
43 43
44 // TODO(ikilpatrick): The AnimationWorkletGlobalScope will need to store a 44 // TODO(ikilpatrick): The AnimationWorkletGlobalScope will need to store a
45 // WorkerClients object for using a CompositorProxyClient object. 45 // WorkerClients object for using a CompositorWorkerProxyClient object.
46 return AnimationWorkletGlobalScope::create( 46 return AnimationWorkletGlobalScope::create(
47 startupData->m_scriptURL, startupData->m_userAgent, 47 startupData->m_scriptURL, startupData->m_userAgent,
48 securityOrigin.release(), this->isolate(), this); 48 securityOrigin.release(), this->isolate(), this);
49 } 49 }
50 50
51 } // namespace blink 51 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698