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

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

Issue 2440583002: Use AudioUtilities::kRenderQuantumFrames everywhere (Closed)
Patch Set: Remove unneeded include of AudioUtilities.h. Created 4 years, 2 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/AudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
index 9fae8b64a98f5eabc5a816531308459b9b8f0254..dc7fe45b785aa4c552a80638aed3a35d425c3ec1 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
@@ -74,7 +74,8 @@ class AudioDestinationHandler : public AudioHandler, public AudioIOCallback {
LocalAudioInputProvider()
: m_sourceBus(AudioBus::create(
2,
- ProcessingSizeInFrames)) // FIXME: handle non-stereo local input.
+ AudioUtilities::kRenderQuantumFrames)) // FIXME: handle
+ // non-stereo local input.
{}
void set(AudioBus* bus) {

Powered by Google App Engine
This is Rietveld 408576698