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

Unified Diff: Source/modules/webaudio/AudioSummingJunction.h

Issue 205173002: Move webaudio to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Created 6 years, 8 months 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: Source/modules/webaudio/AudioSummingJunction.h
diff --git a/Source/modules/webaudio/AudioSummingJunction.h b/Source/modules/webaudio/AudioSummingJunction.h
index d3f392538fd99da9877d2912770dc8b3ccefd5ac..cdc337c187c9eed05d6eca89989cdda6bbbaa394 100644
--- a/Source/modules/webaudio/AudioSummingJunction.h
+++ b/Source/modules/webaudio/AudioSummingJunction.h
@@ -25,6 +25,7 @@
#ifndef AudioSummingJunction_h
#define AudioSummingJunction_h
+#include "heap/Handle.h"
#include "platform/audio/AudioBus.h"
#include "wtf/HashSet.h"
#include "wtf/Vector.h"
@@ -60,7 +61,7 @@ public:
virtual void didUpdate() = 0;
protected:
- RefPtr<AudioContext> m_context;
+ RefPtrWillBePersistent<AudioContext> m_context;
// m_outputs contains the AudioNodeOutputs representing current connections which are not disabled.
// The rendering code should never use this directly, but instead uses m_renderingOutputs.

Powered by Google App Engine
This is Rietveld 408576698