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

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

Issue 14628008: Require use of AudioBus::create() to avoid ref-counting issues (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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/MediaStreamAudioDestinationNode.h
diff --git a/Source/modules/webaudio/MediaStreamAudioDestinationNode.h b/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
index ec430c055d9d9f9830b8d22f4c9787e553977b66..2483682c498bbceb9a730dd2184bf7c20415da4e 100644
--- a/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
+++ b/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
@@ -62,7 +62,7 @@ private:
RefPtr<MediaStream> m_stream;
RefPtr<MediaStreamSource> m_source;
- AudioBus m_mixBus;
+ RefPtr<AudioBus> m_mixBus;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698