| Index: Source/modules/serviceworkers/ServiceWorker.cpp
|
| diff --git a/Source/modules/serviceworkers/ServiceWorker.cpp b/Source/modules/serviceworkers/ServiceWorker.cpp
|
| index 872a258e271b1e3c28d2b1926232853199dee566..2c746c86e95806abdc2ee3f7cfc4caa2224232aa 100644
|
| --- a/Source/modules/serviceworkers/ServiceWorker.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorker.cpp
|
| @@ -101,6 +101,11 @@ void ServiceWorker::terminate(ExceptionState& exceptionState)
|
| exceptionState.throwDOMException(InvalidAccessError, "Not supported.");
|
| }
|
|
|
| +void ServiceWorker::internalsTerminate()
|
| +{
|
| + m_outerWorker->terminate();
|
| +}
|
| +
|
| bool ServiceWorker::isReady()
|
| {
|
| return m_proxyState == Ready;
|
|
|