Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.h |
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.h b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.h |
index 1cb45bff0cd2227d29cec5fd8cad98f87cb070f8..ee1325fddca1f91f9d248ddf9de501de814df3f4 100644 |
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.h |
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.h |
@@ -75,11 +75,13 @@ |
static ServiceWorker* getOrCreate(ExecutionContext*, PassOwnPtr<WebServiceWorker::Handle>); |
ServiceWorker(ExecutionContext*, PassOwnPtr<WebServiceWorker::Handle>); |
- // Inherit from ContextLifecycleObserver. |
+ // ActiveDOMObject overrides. |
bool hasPendingActivity() const override; |
+ void stop() override; |
// A handle to the service worker representation in the embedder. |
OwnPtr<WebServiceWorker::Handle> m_handle; |
+ bool m_wasStopped; |
}; |
} // namespace blink |