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

Unified Diff: Source/modules/webaudio/AudioDestinationNode.cpp

Issue 1140723003: Implement suspend() and resume() for OfflineAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Bring to ToT Created 5 years, 5 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/AudioDestinationNode.cpp
diff --git a/Source/modules/webaudio/AudioDestinationNode.cpp b/Source/modules/webaudio/AudioDestinationNode.cpp
index 920bb6cef15abd48fa14f9edccea93b494906984..3e64d1e79997a8a47515579eb0349fe5347ccc47 100644
--- a/Source/modules/webaudio/AudioDestinationNode.cpp
+++ b/Source/modules/webaudio/AudioDestinationNode.cpp
@@ -95,6 +95,12 @@ void AudioDestinationHandler::render(AudioBus* sourceBus, AudioBus* destinationB
releaseStore(&m_currentSampleFrame, newSampleFrame);
}
+WebThread* AudioDestinationHandler::offlineRenderThread()
+{
+ ASSERT_NOT_REACHED();
+ return nullptr;
+}
+
// ----------------------------------------------------------------
AudioDestinationNode::AudioDestinationNode(AudioContext& context)

Powered by Google App Engine
This is Rietveld 408576698