| Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.cpp
|
| diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.cpp b/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.cpp
|
| index dded2c34a6362a714397e9f5b2cfe58448e67a90..6f8576509f0c22a174795fe73aa28411ccd47c2c 100644
|
| --- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.cpp
|
| +++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorklet.cpp
|
| @@ -20,7 +20,7 @@ AnimationWorklet* AnimationWorklet::Create(LocalFrame* frame) {
|
| }
|
|
|
| AnimationWorklet::AnimationWorklet(LocalFrame* frame)
|
| - : Worklet(frame), worklet_messaging_proxy_(nullptr) {}
|
| + : ThreadedWorklet(frame), worklet_messaging_proxy_(nullptr) {}
|
|
|
| AnimationWorklet::~AnimationWorklet() {
|
| if (worklet_messaging_proxy_)
|
| @@ -52,7 +52,7 @@ WorkletGlobalScopeProxy* AnimationWorklet::GetWorkletGlobalScopeProxy() const {
|
| }
|
|
|
| DEFINE_TRACE(AnimationWorklet) {
|
| - Worklet::Trace(visitor);
|
| + ThreadedWorklet::Trace(visitor);
|
| }
|
|
|
| } // namespace blink
|
|
|