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

Unified Diff: third_party/WebKit/Source/platform/audio/AudioPullFIFO.cpp

Issue 2384073002: reflow comments in platform/audio (Closed)
Patch Set: comments (heh!) 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/platform/audio/AudioPullFIFO.cpp
diff --git a/third_party/WebKit/Source/platform/audio/AudioPullFIFO.cpp b/third_party/WebKit/Source/platform/audio/AudioPullFIFO.cpp
index 164cf1d138d47357fd9cbcd592cd49ec333eb9d6..ca14cfac259e0a9d929445045eeb18fc2642bc79 100644
--- a/third_party/WebKit/Source/platform/audio/AudioPullFIFO.cpp
+++ b/third_party/WebKit/Source/platform/audio/AudioPullFIFO.cpp
@@ -44,7 +44,8 @@ void AudioPullFIFO::consume(AudioBus* destination, size_t framesToConsume) {
return;
if (framesToConsume > m_fifo.framesInFifo()) {
- // We don't have enough data in the FIFO to fulfill the request. Ask for more data.
+ // We don't have enough data in the FIFO to fulfill the request. Ask for
+ // more data.
fillBuffer(framesToConsume - m_fifo.framesInFifo());
}
@@ -52,8 +53,8 @@ void AudioPullFIFO::consume(AudioBus* destination, size_t framesToConsume) {
}
void AudioPullFIFO::fillBuffer(size_t numberOfFrames) {
- // Keep asking the provider to give us data until we have received at least |numberOfFrames| of
- // data. Stuff the data into the FIFO.
+ // Keep asking the provider to give us data until we have received at least
+ // |numberOfFrames| of data. Stuff the data into the FIFO.
size_t framesProvided = 0;
while (framesProvided < numberOfFrames) {
« no previous file with comments | « third_party/WebKit/Source/platform/audio/AudioPullFIFO.h ('k') | third_party/WebKit/Source/platform/audio/AudioResampler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698