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

Unified Diff: third_party/WebKit/Source/platform/audio/SincResampler.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/SincResampler.cpp
diff --git a/third_party/WebKit/Source/platform/audio/SincResampler.cpp b/third_party/WebKit/Source/platform/audio/SincResampler.cpp
index 66a995d37baa4408cda4a5401af7338bb8b5136f..e7ca2c77d050920095f97cc9a3154cf49fefc362 100644
--- a/third_party/WebKit/Source/platform/audio/SincResampler.cpp
+++ b/third_party/WebKit/Source/platform/audio/SincResampler.cpp
@@ -75,9 +75,8 @@ SincResampler::SincResampler(double scaleFactor,
m_kernelStorage(m_kernelSize * (m_numberOfKernelOffsets + 1)),
m_virtualSourceIndex(0),
m_blockSize(512),
- m_inputBuffer(m_blockSize +
- m_kernelSize) // See input buffer layout above.
- ,
+ // See input buffer layout above.
+ m_inputBuffer(m_blockSize + m_kernelSize),
m_source(nullptr),
m_sourceFramesAvailable(0),
m_sourceProvider(nullptr),
« no previous file with comments | « third_party/WebKit/Source/platform/audio/FFTConvolver.cpp ('k') | third_party/WebKit/Source/platform/fonts/Font.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698