| Index: third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| diff --git a/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h b/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| index e54e0eb4a1a5e758fadf04f9b35b1dfc055f90f7..63dda118d75bedde499c857e84be71d3e8d84d05 100644
|
| --- a/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| +++ b/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| @@ -32,7 +32,7 @@
|
| #define SourceBuffer_h
|
|
|
| #include "bindings/core/v8/ActiveScriptWrappable.h"
|
| -#include "core/dom/ActiveDOMObject.h"
|
| +#include "core/dom/SuspendableObject.h"
|
| #include "modules/EventTargetModules.h"
|
| #include "modules/mediasource/TrackDefaultList.h"
|
| #include "platform/AsyncMethodRunner.h"
|
| @@ -55,7 +55,7 @@ class WebSourceBuffer;
|
|
|
| class SourceBuffer final : public EventTargetWithInlineData,
|
| public ActiveScriptWrappable,
|
| - public ActiveDOMObject,
|
| + public SuspendableObject,
|
| public WebSourceBufferClient {
|
| USING_GARBAGE_COLLECTED_MIXIN(SourceBuffer);
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -102,7 +102,7 @@ class SourceBuffer final : public EventTargetWithInlineData,
|
| // ScriptWrappable
|
| bool hasPendingActivity() const final;
|
|
|
| - // ActiveDOMObject
|
| + // SuspendableObject
|
| void suspend() override;
|
| void resume() override;
|
| void contextDestroyed() override;
|
|
|