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

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

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.h
diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
index 4b83dead10c4c39acab8a4fadda766e27e726fac..b38cd9ae44dae1d1e50bd211d01af404dff7a314 100644
--- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
+++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
@@ -85,9 +85,10 @@ class WaveShaperNode;
// are created from it. For thread safety between the audio thread and the main
// thread, it has a rendering graph locking mechanism.
-class MODULES_EXPORT BaseAudioContext : public EventTargetWithInlineData,
- public ActiveScriptWrappable,
- public SuspendableObject {
+class MODULES_EXPORT BaseAudioContext
+ : public EventTargetWithInlineData,
+ public ActiveScriptWrappable<BaseAudioContext>,
+ public SuspendableObject {
USING_GARBAGE_COLLECTED_MIXIN(BaseAudioContext);
DEFINE_WRAPPERTYPEINFO();

Powered by Google App Engine
This is Rietveld 408576698