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

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

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.h
diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h
index be3f82207d84488da0b266dbc70991707ec3421b..e3a96fae2618aee8b2c7ed9c86d2f7defbc97d20 100644
--- a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h
+++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h
@@ -13,6 +13,7 @@
namespace blink {
class ExecutionContext;
+class WorkerClients;
class WorkerThread;
class AnimationWorkletMessagingProxy final
@@ -20,14 +21,12 @@ class AnimationWorkletMessagingProxy final
USING_FAST_MALLOC(AnimationWorkletMessagingProxy);
public:
- AnimationWorkletMessagingProxy(ExecutionContext*,
- AnimationWorkletProxyClient*);
+ AnimationWorkletMessagingProxy(ExecutionContext*, WorkerClients*);
protected:
~AnimationWorkletMessagingProxy() override;
std::unique_ptr<WorkerThread> CreateWorkerThread(double origin_time) override;
- Persistent<AnimationWorkletProxyClient> proxy_client_;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698