Index: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp |
diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp |
index 7e5e9a468631acb10c727a141529730951f41cf3..48059a4af4e07c7d2fed94f9ae1d7561b1404647 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp |
+++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp |
@@ -89,8 +89,7 @@ BaseAudioContext* BaseAudioContext::create(Document& document, |
// Constructor for rendering to the audio hardware. |
BaseAudioContext::BaseAudioContext(Document* document) |
- : ActiveScriptWrappable<BaseAudioContext>(this), |
- SuspendableObject(document), |
+ : SuspendableObject(document), |
m_destinationNode(nullptr), |
m_isCleared(false), |
m_isResolvingResumePromises(false), |
@@ -122,8 +121,7 @@ BaseAudioContext::BaseAudioContext(Document* document, |
unsigned numberOfChannels, |
size_t numberOfFrames, |
float sampleRate) |
- : ActiveScriptWrappable(this), |
- SuspendableObject(document), |
+ : SuspendableObject(document), |
m_destinationNode(nullptr), |
m_isCleared(false), |
m_isResolvingResumePromises(false), |