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

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

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit 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/FFTConvolver.cpp
diff --git a/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp b/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp
index 2303c08a7ab29929e4781e016c4272c150bde8e6..b22dd3b2bf2a5968a9f403d9c73635e788bc0d14 100644
--- a/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp
+++ b/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp
@@ -36,8 +36,7 @@ using namespace VectorMath;
FFTConvolver::FFTConvolver(size_t fftSize)
: m_frame(fftSize),
m_readWriteIndex(0),
- m_inputBuffer(fftSize) // 2nd half of buffer is always zeroed
- ,
+ m_inputBuffer(fftSize), // 2nd half of buffer is always zeroed
m_outputBuffer(fftSize),
m_lastOverlapBuffer(fftSize / 2) {}
« no previous file with comments | « third_party/WebKit/Source/platform/audio/DownSampler.cpp ('k') | third_party/WebKit/Source/platform/audio/SincResampler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698