| Index: third_party/WebKit/Source/core/workers/WorkerThread.h
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerThread.h b/third_party/WebKit/Source/core/workers/WorkerThread.h
|
| index cb6ece4c641d417f27ff2da8c01c2e4fbcfd04da..d345b44e1afea53b3a55f7ef8d9f4a3799d14de4 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerThread.h
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerThread.h
|
| @@ -106,7 +106,7 @@ class CORE_EXPORT WorkerThread : public WebThread::TaskObserver {
|
| virtual ~WorkerThread();
|
|
|
| // Called on the main thread.
|
| - void start(std::unique_ptr<WorkerThreadStartupData>);
|
| + void start(std::unique_ptr<WorkerThreadStartupData>, ParentFrameTaskRunners*);
|
| void terminate();
|
|
|
| // Called on the main thread. Internally calls terminateInternal() and wait
|
| @@ -175,9 +175,7 @@ class CORE_EXPORT WorkerThread : public WebThread::TaskObserver {
|
| }
|
|
|
| protected:
|
| - WorkerThread(PassRefPtr<WorkerLoaderProxy>,
|
| - WorkerReportingProxy&,
|
| - ParentFrameTaskRunners*);
|
| + WorkerThread(PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&);
|
|
|
| // Factory method for creating a new worker context for the thread.
|
| // Called on the worker thread.
|
|
|