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

Unified Diff: third_party/WebKit/Source/platform/audio/DownSampler.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/DownSampler.cpp
diff --git a/third_party/WebKit/Source/platform/audio/DownSampler.cpp b/third_party/WebKit/Source/platform/audio/DownSampler.cpp
index 1f2b0e05097914e62962864e3eca93c244adcb5a..fabfca52df2dc79b798dbdcdbdba783fea1dadb8 100644
--- a/third_party/WebKit/Source/platform/audio/DownSampler.cpp
+++ b/third_party/WebKit/Source/platform/audio/DownSampler.cpp
@@ -36,8 +36,7 @@ namespace blink {
DownSampler::DownSampler(size_t inputBlockSize)
: m_inputBlockSize(inputBlockSize),
m_reducedKernel(DefaultKernelSize / 2),
- m_convolver(inputBlockSize / 2) // runs at 1/2 source sample-rate
- ,
+ m_convolver(inputBlockSize / 2), // runs at 1/2 source sample-rate
m_tempBuffer(inputBlockSize / 2),
m_inputBuffer(inputBlockSize * 2) {
initializeKernel();
« no previous file with comments | « third_party/WebKit/Source/platform/Timer.cpp ('k') | third_party/WebKit/Source/platform/audio/FFTConvolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698