Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Unified Diff: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp

Issue 2578193004: Remove ActiveScriptWrappableBase::m_scriptWrappable (Closed)
Patch Set: temp Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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),

Powered by Google App Engine
This is Rietveld 408576698