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

Unified Diff: third_party/WebKit/Source/platform/exported/WebAudioDevice.cpp

Issue 2060833002: Implementation of 'AudioContext.getOutputTimestamp' method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added implementation for ALSA. Created 4 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: third_party/WebKit/Source/platform/exported/WebAudioDevice.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebAudioDevice.cpp b/third_party/WebKit/Source/platform/exported/WebAudioDevice.cpp
index f01ab439ca05adc5ac289405b2b02893b9f65937..ddb154f1fdc8c94074a21df43ff790e8e83e1a74 100644
--- a/third_party/WebKit/Source/platform/exported/WebAudioDevice.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebAudioDevice.cpp
@@ -30,6 +30,11 @@ void WebAudioDevice::RenderCallback::render(const WebVector<float*>& sourceData,
{
}
+void WebAudioDevice::RenderCallback::render(const WebVector<float*>& sourceData, const WebVector<float*>& destinationData, size_t numberOfFrames, const WebAudioTimestamp&)
+{
+ render(sourceData, destinationData, numberOfFrames);
+}
+
WebAudioDevice::RenderCallback::~RenderCallback()
{
}

Powered by Google App Engine
This is Rietveld 408576698