Chromium Code Reviews| Index: third_party/WebKit/Source/core/workers/InProcessWorkerBase.h |
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h |
| index 94818b629aa51aba4d8e692c3a822515c070ae09..0d6e76e16b77956ad7837a686ed073582f708609 100644 |
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h |
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.h |
| @@ -6,7 +6,7 @@ |
| #define InProcessWorkerBase_h |
| #include "core/CoreExport.h" |
| -#include "core/dom/ActiveDOMObject.h" |
| +#include "core/dom/ContextLifecycleObserver.h" |
| #include "core/dom/MessagePort.h" |
| #include "core/events/EventListener.h" |
| #include "core/events/EventTarget.h" |
| @@ -33,8 +33,7 @@ public: |
| void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> message, const MessagePortArray*, ExceptionState&); |
| void terminate(); |
| - // ActiveDOMObject |
| - void stop() override; |
| + void contextDestroyed() override; |
| bool hasPendingActivity() const override; |
|
kinuko
2016/02/29 09:33:52
Can we keep a brief comment for overriding methods
haraken
2016/02/29 10:52:47
Done.
|
| ContentSecurityPolicy* contentSecurityPolicy(); |