| Index: third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
|
| diff --git a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
|
| index 9b0127cd2576d5c444a7999a7c6d0f64e1299b02..df7f4f1afa74728defad26fa21755d9ff04940be 100644
|
| --- a/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
|
| +++ b/third_party/WebKit/Source/modules/websockets/DOMWebSocket.h
|
| @@ -33,7 +33,7 @@
|
|
|
| #include "bindings/core/v8/ActiveScriptWrappable.h"
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| -#include "core/dom/ActiveDOMObject.h"
|
| +#include "core/dom/SuspendableObject.h"
|
| #include "core/events/EventListener.h"
|
| #include "core/events/EventTarget.h"
|
| #include "modules/EventTargetModules.h"
|
| @@ -63,7 +63,7 @@ class StringOrStringSequence;
|
|
|
| class MODULES_EXPORT DOMWebSocket : public EventTargetWithInlineData,
|
| public ActiveScriptWrappable,
|
| - public ActiveDOMObject,
|
| + public SuspendableObject,
|
| public WebSocketChannelClient {
|
| DEFINE_WRAPPERTYPEINFO();
|
| USING_GARBAGE_COLLECTED_MIXIN(DOMWebSocket);
|
| @@ -121,7 +121,7 @@ class MODULES_EXPORT DOMWebSocket : public EventTargetWithInlineData,
|
| const AtomicString& interfaceName() const override;
|
| ExecutionContext* getExecutionContext() const override;
|
|
|
| - // ActiveDOMObject functions.
|
| + // SuspendableObject functions.
|
| void contextDestroyed() override;
|
| void suspend() override;
|
| void resume() override;
|
|
|