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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.h

Issue 2718643002: Worker: Pass ParentFrameTaskRunners via WorkerThread::start() instead of the ctor (Closed)
Patch Set: Created 3 years, 10 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/webaudio/AudioWorkletThread.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.h b/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.h
index 11fa0b311c0d6397574d5eaa918d86138c6f6ba2..5f583be0b36d63d1e386d7c1835ae4e766fb0896 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorkletThread.h
@@ -23,8 +23,7 @@ class MODULES_EXPORT AudioWorkletThread final : public WorkerThread {
public:
static std::unique_ptr<AudioWorkletThread> create(
PassRefPtr<WorkerLoaderProxy>,
- WorkerReportingProxy&,
- ParentFrameTaskRunners*);
+ WorkerReportingProxy&);
~AudioWorkletThread() override;
WorkerBackingThread& workerBackingThread() override;
@@ -47,9 +46,7 @@ class MODULES_EXPORT AudioWorkletThread final : public WorkerThread {
bool isOwningBackingThread() const override { return false; }
private:
- AudioWorkletThread(PassRefPtr<WorkerLoaderProxy>,
- WorkerReportingProxy&,
- ParentFrameTaskRunners*);
+ AudioWorkletThread(PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698