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

Unified Diff: AudioContext.cpp

Issue 7740069: Remove AudioContext createChannelMerger() method until thread safety issues can be properly addre... (Closed) Base URL: https://svn.webkit.org/repository/webkit/branches/chromium/835/Source/WebCore/webaudio/
Patch Set: Created 9 years, 4 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
« no previous file with comments | « AudioContext.h ('k') | AudioContext.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: AudioContext.cpp
===================================================================
--- AudioContext.cpp (revision 94137)
+++ AudioContext.cpp (working copy)
@@ -402,13 +402,6 @@
return AudioChannelSplitter::create(this, m_destinationNode->sampleRate());
}
-PassRefPtr<AudioChannelMerger> AudioContext::createChannelMerger()
-{
- ASSERT(isMainThread());
- lazyInitialize();
- return AudioChannelMerger::create(this, m_destinationNode->sampleRate());
-}
-
void AudioContext::notifyNodeFinishedProcessing(AudioNode* node)
{
ASSERT(isAudioThread());
« no previous file with comments | « AudioContext.h ('k') | AudioContext.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698