| Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletGlobalScope.cpp b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletGlobalScope.cpp
|
| index 19c7218a9c97b473815ae966767addc07d2cd1ec..9586c64b49f3e8335497df5a85333713dae32bbf 100644
|
| --- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletGlobalScope.cpp
|
| @@ -10,11 +10,11 @@ namespace blink {
|
|
|
| AnimationWorkletGlobalScope* AnimationWorkletGlobalScope::create(const KURL& url, const String& userAgent, PassRefPtr<SecurityOrigin> securityOrigin, v8::Isolate* isolate, WorkerThread* thread)
|
| {
|
| - return new AnimationWorkletGlobalScope(url, userAgent, securityOrigin, isolate, thread);
|
| + return new AnimationWorkletGlobalScope(url, userAgent, std::move(securityOrigin), isolate, thread);
|
| }
|
|
|
| AnimationWorkletGlobalScope::AnimationWorkletGlobalScope(const KURL& url, const String& userAgent, PassRefPtr<SecurityOrigin> securityOrigin, v8::Isolate* isolate, WorkerThread* thread)
|
| - : ThreadedWorkletGlobalScope(url, userAgent, securityOrigin, isolate, thread)
|
| + : ThreadedWorkletGlobalScope(url, userAgent, std::move(securityOrigin), isolate, thread)
|
| {
|
| }
|
|
|
|
|