| Index: third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| index 472928bcb1daacf8203b1bf48e18ea0ef76ec9fe..0acd68fc053cd8ebd1f9e2170c58bb18659327c0 100644
|
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| @@ -56,8 +56,8 @@ bool InProcessWorkerBase::initialize(ExecutionContext* context, const String& ur
|
| scriptURL,
|
| DenyCrossOriginRequests,
|
| context->securityContext().addressSpace(),
|
| - bind(&InProcessWorkerBase::onResponse, this),
|
| - bind(&InProcessWorkerBase::onFinished, this));
|
| + bind(&InProcessWorkerBase::onResponse, wrapCrossThreadPersistent(this)),
|
| + bind(&InProcessWorkerBase::onFinished, wrapCrossThreadPersistent(this)));
|
|
|
| m_contextProxy = createInProcessWorkerGlobalScopeProxy(context);
|
|
|
|
|