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

Unified Diff: Source/core/platform/audio/MultiChannelResampler.h

Issue 20294002: Fix trailing whitespace in .cpp, .h, and .idl files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased 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/core/platform/audio/HRTFPanner.cpp ('k') | Source/core/platform/audio/Panner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/audio/MultiChannelResampler.h
diff --git a/Source/core/platform/audio/MultiChannelResampler.h b/Source/core/platform/audio/MultiChannelResampler.h
index a5164a7d18db643dc617a58cbc72c81c6f540c08..16a57fd532cbbf4d0994ecf08ee7807b6be92d40 100644
--- a/Source/core/platform/audio/MultiChannelResampler.h
+++ b/Source/core/platform/audio/MultiChannelResampler.h
@@ -35,11 +35,11 @@
namespace WebCore {
class AudioBus;
-
+
class MultiChannelResampler {
-public:
+public:
MultiChannelResampler(double scaleFactor, unsigned numberOfChannels);
-
+
// Process given AudioSourceProvider for streaming applications.
void process(AudioSourceProvider*, AudioBus* destination, size_t framesToProcess);
@@ -47,10 +47,10 @@ private:
// FIXME: the mac port can have a more highly optimized implementation based on CoreAudio
// instead of SincResampler. For now the default implementation will be used on all ports.
// https://bugs.webkit.org/show_bug.cgi?id=75118
-
+
// Each channel will be resampled using a high-quality SincResampler.
Vector<OwnPtr<SincResampler> > m_kernels;
-
+
unsigned m_numberOfChannels;
};
« no previous file with comments | « Source/core/platform/audio/HRTFPanner.cpp ('k') | Source/core/platform/audio/Panner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698