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

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

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | « Source/modules/webaudio/WaveShaperNode.h ('k') | Source/modules/webdatabase/AbstractDatabaseServer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/WaveShaperProcessor.cpp
diff --git a/Source/modules/webaudio/WaveShaperProcessor.cpp b/Source/modules/webaudio/WaveShaperProcessor.cpp
index f4b5efa728f0bab4f4312c95b3304e0758d975bb..2f5c1e63410d9a0d779889d0615212689d74bbbd 100644
--- a/Source/modules/webaudio/WaveShaperProcessor.cpp
+++ b/Source/modules/webaudio/WaveShaperProcessor.cpp
@@ -53,7 +53,7 @@ void WaveShaperProcessor::setCurve(Float32Array* curve)
{
// This synchronizes with process().
MutexLocker processLocker(m_processLock);
-
+
m_curve = curve;
}
@@ -86,7 +86,7 @@ void WaveShaperProcessor::process(const AudioBus* source, AudioBus* destination,
// The audio thread can't block on this lock, so we call tryLock() instead.
MutexTryLocker tryLocker(m_processLock);
- if (tryLocker.locked()) {
+ if (tryLocker.locked()) {
// 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);
« no previous file with comments | « Source/modules/webaudio/WaveShaperNode.h ('k') | Source/modules/webdatabase/AbstractDatabaseServer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698