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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h

Issue 2060833002: Implementation of 'AudioContext.getOutputTimestamp' method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 'global-interface-listing-expected' layout test results Created 4 years, 1 month 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/modules/webaudio/AudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
index 9fae8b64a98f5eabc5a816531308459b9b8f0254..e81de1865a37da52b3fd2f2dafc10a1c126bca07 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
@@ -51,7 +51,8 @@ class AudioDestinationHandler : public AudioHandler, public AudioIOCallback {
// sourceBus (if it's not 0).
void render(AudioBus* sourceBus,
AudioBus* destinationBus,
- size_t numberOfFrames) final;
+ size_t numberOfFrames,
+ const AudioIOPosition& outputPosition) final;
size_t currentSampleFrame() const {
return acquireLoad(&m_currentSampleFrame);

Powered by Google App Engine
This is Rietveld 408576698