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

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

Issue 2501863003: Support for AudioContextOptions latencyHint. (Closed)
Patch Set: Rebasing Created 3 years, 10 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/modules/webaudio/OfflineAudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
index 64cbbb3aacaed9be593c41f26be3f4d0fd06664e..d8073ce6820eb03df3cf11ed57c38d7ba89f70cf 100644
--- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
@@ -63,7 +63,11 @@ class OfflineAudioDestinationHandler final : public AudioDestinationHandler {
// called.
size_t callbackBufferSize() const override;
- float sampleRate() const override { return m_renderTarget->sampleRate(); }
+ double sampleRate() const override { return m_renderTarget->sampleRate(); }
+ int framesPerBuffer() const override {
+ NOTREACHED();
+ return 0;
+ }
size_t renderQuantumFrames() const {
return AudioUtilities::kRenderQuantumFrames;

Powered by Google App Engine
This is Rietveld 408576698