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

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 Created 4 years 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 dc7fe45b785aa4c552a80638aed3a35d425c3ec1..65a6743a8735f02c9bceacd867699c71dd82d128 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