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

Unified Diff: third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp

Issue 2389253002: reflow comments in modules/{webaudio,vr} (Closed)
Patch Set: . 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
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp
index cc680c2205cb34948ce75b07b618f0f04ab931b9..7952c4c50803ff064f3ac2d00727d346a16c9662 100644
--- a/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.cpp
@@ -94,13 +94,15 @@ void WaveShaperProcessor::process(const AudioBus* source,
// The audio thread can't block on this lock, so we call tryLock() instead.
MutexTryLocker tryLocker(m_processLock);
if (tryLocker.locked()) {
- // For each channel of our input, process using the corresponding WaveShaperDSPKernel into the output channel.
+ // For each channel of our input, process using the corresponding
+ // WaveShaperDSPKernel into the output channel.
for (unsigned i = 0; i < m_kernels.size(); ++i)
m_kernels[i]->process(source->channel(i)->data(),
destination->channel(i)->mutableData(),
framesToProcess);
} else {
- // Too bad - the tryLock() failed. We must be in the middle of a setCurve() call.
+ // Too bad - the tryLock() failed. We must be in the middle of a setCurve()
+ // call.
destination->zero();
}
}
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/WaveShaperProcessor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698