| Index: third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp b/third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp
|
| index 9706db2da54ff55eb109a9ef1abe829e41a75930..d49b7e4c50feafe3791f76459ddf146324b33f77 100644
|
| --- a/third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp
|
| @@ -100,7 +100,8 @@ void WorkerScriptLoader::loadAsynchronously(ExecutionContext& executionContext,
|
| // (E.g. see crbug.com/524694 for why we can't easily remove this protect)
|
| RefPtr<WorkerScriptLoader> protect(this);
|
| m_needToCancel = true;
|
| - m_threadableLoader = ThreadableLoader::create(executionContext, this, request, options, resourceLoaderOptions);
|
| + m_threadableLoader = ThreadableLoader::create(executionContext, this, options, resourceLoaderOptions);
|
| + m_threadableLoader->start(request);
|
| if (m_failed)
|
| notifyFinished();
|
| }
|
|
|