| Index: Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| diff --git a/Source/web/ServiceWorkerGlobalScopeProxy.cpp b/Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| index e02289e5ac86750fbbde703a183f7b7eae367de7..a9db21d4e579533c5d0ef00b9213c8941b14e3d7 100644
|
| --- a/Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| +++ b/Source/web/ServiceWorkerGlobalScopeProxy.cpp
|
| @@ -201,6 +201,11 @@ void ServiceWorkerGlobalScopeProxy::didEvaluateWorkerScript(bool success)
|
| m_client.didEvaluateWorkerScript(success);
|
| }
|
|
|
| +void ServiceWorkerGlobalScopeProxy::didInitializeWorkerContext(v8::Local<v8::Context> context)
|
| +{
|
| + m_client.didInitializeWorkerContext(context, WebURL(m_document.url()));
|
| +}
|
| +
|
| void ServiceWorkerGlobalScopeProxy::workerGlobalScopeStarted(WorkerGlobalScope* workerGlobalScope)
|
| {
|
| ASSERT(!m_workerGlobalScope);
|
|
|