| Index: third_party/WebKit/Source/core/streams/UnderlyingSourceBase.h
|
| diff --git a/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.h b/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.h
|
| index fdbd24385c1f8ed40ab3e08651c7589e9079d409..f1f40ec00023d92dac5d59d49cb4c206d7473a39 100644
|
| --- a/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.h
|
| +++ b/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.h
|
| @@ -22,7 +22,7 @@ class ReadableStreamController;
|
| class CORE_EXPORT UnderlyingSourceBase
|
| : public GarbageCollectedFinalized<UnderlyingSourceBase>,
|
| public ScriptWrappable,
|
| - public ActiveScriptWrappable,
|
| + public ActiveScriptWrappable<UnderlyingSourceBase>,
|
| public SuspendableObject {
|
| DEFINE_WRAPPERTYPEINFO();
|
| USING_GARBAGE_COLLECTED_MIXIN(UnderlyingSourceBase);
|
| @@ -50,7 +50,7 @@ class CORE_EXPORT UnderlyingSourceBase
|
|
|
| protected:
|
| explicit UnderlyingSourceBase(ScriptState* scriptState)
|
| - : ActiveScriptWrappable(this),
|
| + : ActiveScriptWrappable<UnderlyingSourceBase>(this),
|
| SuspendableObject(scriptState->getExecutionContext()) {
|
| this->suspendIfNeeded();
|
| }
|
|
|