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

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

Issue 2539443004: Worker: Move ParentFrameTaskRunners from WorkerReportingProxy to ObjectProxy (Closed)
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/compositorworker/AbstractAnimationWorkletThread.cpp
diff --git a/third_party/WebKit/Source/modules/compositorworker/AbstractAnimationWorkletThread.cpp b/third_party/WebKit/Source/modules/compositorworker/AbstractAnimationWorkletThread.cpp
index 72304649aaab487d9ac7fbcece28ed6423b13132..892416813fd2e806a0517eb3a83bef66da96c2ea 100644
--- a/third_party/WebKit/Source/modules/compositorworker/AbstractAnimationWorkletThread.cpp
+++ b/third_party/WebKit/Source/modules/compositorworker/AbstractAnimationWorkletThread.cpp
@@ -19,8 +19,11 @@ template class WorkletThreadHolder<AbstractAnimationWorkletThread>;
AbstractAnimationWorkletThread::AbstractAnimationWorkletThread(
PassRefPtr<WorkerLoaderProxy> workerLoaderProxy,
- WorkerReportingProxy& workerReportingProxy)
- : WorkerThread(std::move(workerLoaderProxy), workerReportingProxy) {}
+ WorkerReportingProxy& workerReportingProxy,
+ ParentFrameTaskRunners* parentFrameTaskRunners)
+ : WorkerThread(std::move(workerLoaderProxy),
+ workerReportingProxy,
+ parentFrameTaskRunners) {}
AbstractAnimationWorkletThread::~AbstractAnimationWorkletThread() {}

Powered by Google App Engine
This is Rietveld 408576698