| Index: third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| index cae4f4be9cae862de0c28459ce3677277183c5c2..f67bdd9d45804a23621687ae7d969c3d8cc354ad 100644
|
| --- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
|
| @@ -278,10 +278,9 @@ void WebSharedWorkerImpl::postTaskToLoader(const WebTraceLocation& location, std
|
| m_mainFrame->frame()->document()->postTask(location, std::move(task));
|
| }
|
|
|
| -bool WebSharedWorkerImpl::postTaskToWorkerGlobalScope(const WebTraceLocation& location, std::unique_ptr<ExecutionContextTask> task)
|
| +void WebSharedWorkerImpl::postTaskToWorkerGlobalScope(const WebTraceLocation& location, std::unique_ptr<ExecutionContextTask> task)
|
| {
|
| m_workerThread->postTask(location, std::move(task));
|
| - return true;
|
| }
|
|
|
| void WebSharedWorkerImpl::connect(WebMessagePortChannel* webChannel)
|
|
|