| Index: third_party/WebKit/Source/modules/eventsource/EventSource.h
|
| diff --git a/third_party/WebKit/Source/modules/eventsource/EventSource.h b/third_party/WebKit/Source/modules/eventsource/EventSource.h
|
| index dc5a54491f10aa89166d9c46a36e747ae7e06190..cfdcea36c574f71af6b5abe709c9e9f9e797fd40 100644
|
| --- a/third_party/WebKit/Source/modules/eventsource/EventSource.h
|
| +++ b/third_party/WebKit/Source/modules/eventsource/EventSource.h
|
| @@ -33,7 +33,7 @@
|
| #define EventSource_h
|
|
|
| #include "bindings/core/v8/ActiveScriptWrappable.h"
|
| -#include "core/dom/ActiveDOMObject.h"
|
| +#include "core/dom/SuspendableObject.h"
|
| #include "core/events/EventTarget.h"
|
| #include "core/loader/ThreadableLoader.h"
|
| #include "core/loader/ThreadableLoaderClient.h"
|
| @@ -54,7 +54,7 @@ class ResourceResponse;
|
| class MODULES_EXPORT EventSource final : public EventTargetWithInlineData,
|
| private ThreadableLoaderClient,
|
| public ActiveScriptWrappable,
|
| - public ActiveDOMObject,
|
| + public SuspendableObject,
|
| public EventSourceParser::Client {
|
| DEFINE_WRAPPERTYPEINFO();
|
| USING_GARBAGE_COLLECTED_MIXIN(EventSource);
|
| @@ -84,7 +84,7 @@ class MODULES_EXPORT EventSource final : public EventTargetWithInlineData,
|
| const AtomicString& interfaceName() const override;
|
| ExecutionContext* getExecutionContext() const override;
|
|
|
| - // ActiveDOMObject
|
| + // SuspendableObject
|
| //
|
| // Note: suspend() is noop since ScopedPageLoadDeferrer calls
|
| // Page::setDefersLoading() and it defers delivery of events from the
|
|
|