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

Unified Diff: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.cpp

Issue 2894233002: [animation-worklet] invoke animate callback on mutation signal (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.cpp
diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.cpp b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.cpp
index 9e6c6f9f03baf4b752a77f2ff2332d3e4dc44b56..0f2eac61737611a8e75331da51d36767facfe6f4 100644
--- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.cpp
+++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.cpp
@@ -5,15 +5,15 @@
#include "modules/compositorworker/AnimationWorkletMessagingProxy.h"
#include "core/workers/ThreadedWorkletObjectProxy.h"
+#include "core/workers/WorkerClients.h"
#include "modules/compositorworker/AnimationWorkletThread.h"
namespace blink {
AnimationWorkletMessagingProxy::AnimationWorkletMessagingProxy(
ExecutionContext* execution_context,
- AnimationWorkletProxyClient* proxy_client)
- : ThreadedWorkletMessagingProxy(execution_context),
- proxy_client_(proxy_client) {}
+ WorkerClients* worker_clients)
+ : ThreadedWorkletMessagingProxy(execution_context, worker_clients) {}
AnimationWorkletMessagingProxy::~AnimationWorkletMessagingProxy() {}

Powered by Google App Engine
This is Rietveld 408576698