| Index: third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
|
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
|
| index c89f3e55c42d834c8d10f9c261e6abe3c7bce5af..e3379ab148f10935cb9902969a2c24e7d68f01b2 100644
|
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
|
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannel.h
|
| @@ -27,7 +27,7 @@
|
|
|
| #include "base/gtest_prod_util.h"
|
| #include "bindings/core/v8/ActiveScriptWrappable.h"
|
| -#include "core/dom/ActiveDOMObject.h"
|
| +#include "core/dom/SuspendableObject.h"
|
| #include "modules/EventTargetModules.h"
|
| #include "platform/Timer.h"
|
| #include "platform/heap/Handle.h"
|
| @@ -50,7 +50,7 @@ class MODULES_EXPORT RTCDataChannel final
|
| : public EventTargetWithInlineData,
|
| NON_EXPORTED_BASE(public WebRTCDataChannelHandlerClient),
|
| public ActiveScriptWrappable,
|
| - public ActiveDOMObject {
|
| + public SuspendableObject {
|
| USING_GARBAGE_COLLECTED_MIXIN(RTCDataChannel);
|
| DEFINE_WRAPPERTYPEINFO();
|
| USING_PRE_FINALIZER(RTCDataChannel, dispose);
|
| @@ -104,7 +104,7 @@ class MODULES_EXPORT RTCDataChannel final
|
| const AtomicString& interfaceName() const override;
|
| ExecutionContext* getExecutionContext() const override;
|
|
|
| - // ActiveDOMObject
|
| + // SuspendableObject
|
| void suspend() override;
|
| void resume() override;
|
| void contextDestroyed() override;
|
|
|