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

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

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) 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 3481cdc6c21eab6ae831aea174c3e11593593f87..7e5e9a468631acb10c727a141529730951f41cf3 100644
--- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
@@ -89,7 +89,7 @@ BaseAudioContext* BaseAudioContext::create(Document& document,
// Constructor for rendering to the audio hardware.
BaseAudioContext::BaseAudioContext(Document* document)
- : ActiveScriptWrappable(this),
+ : ActiveScriptWrappable<BaseAudioContext>(this),
SuspendableObject(document),
m_destinationNode(nullptr),
m_isCleared(false),

Powered by Google App Engine
This is Rietveld 408576698