| Index: Source/web/WebSharedWorkerImpl.cpp
|
| diff --git a/Source/web/WebSharedWorkerImpl.cpp b/Source/web/WebSharedWorkerImpl.cpp
|
| index 7898c73a23bdfc255a16052b109c4bff5eda4d6f..ede5e8b3f39daf0abbb221939db36048274eb9c9 100644
|
| --- a/Source/web/WebSharedWorkerImpl.cpp
|
| +++ b/Source/web/WebSharedWorkerImpl.cpp
|
| @@ -89,11 +89,12 @@ public:
|
|
|
| void load(ExecutionContext* loadingContext, const KURL& scriptURL, const Closure& receiveResponseCallback, const Closure& finishCallback)
|
| {
|
| + ASSERT(loadingContext);
|
| m_receiveResponseCallback = receiveResponseCallback;
|
| m_finishCallback = finishCallback;
|
| m_scriptLoader->setTargetType(ResourceRequest::TargetIsSharedWorker);
|
| m_scriptLoader->loadAsynchronously(
|
| - loadingContext, scriptURL, DenyCrossOriginRequests, this);
|
| + *loadingContext, scriptURL, DenyCrossOriginRequests, this);
|
| }
|
|
|
| void didReceiveResponse(unsigned long identifier, const ResourceResponse& response) OVERRIDE
|
|
|