| Index: Source/web/WebSharedWorkerImpl.cpp
|
| diff --git a/Source/web/WebSharedWorkerImpl.cpp b/Source/web/WebSharedWorkerImpl.cpp
|
| index cc0bdabcb755f9becb06ae81b6237a18da110845..cb4f9541363b6228e3ac92d1da85012d862a64e0 100644
|
| --- a/Source/web/WebSharedWorkerImpl.cpp
|
| +++ b/Source/web/WebSharedWorkerImpl.cpp
|
| @@ -351,14 +351,14 @@ void WebSharedWorkerImpl::postTaskToLoader(PassOwnPtr<ExecutionContextTask> task
|
|
|
| bool WebSharedWorkerImpl::postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask> task)
|
| {
|
| - m_workerThread->postTask(task);
|
| + m_workerThread->postTask(FROM_HERE, task);
|
| return true;
|
| }
|
|
|
| void WebSharedWorkerImpl::connect(WebMessagePortChannel* webChannel)
|
| {
|
| workerThread()->postTask(
|
| - createCrossThreadTask(&connectTask, adoptPtr(webChannel)));
|
| + FROM_HERE, createCrossThreadTask(&connectTask, adoptPtr(webChannel)));
|
| }
|
|
|
| void WebSharedWorkerImpl::connectTask(ExecutionContext* context, PassOwnPtr<WebMessagePortChannel> channel)
|
|
|