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

Unified Diff: Source/modules/webaudio/RealtimeAnalyser.h

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/PannerNode.idl ('k') | Source/modules/webaudio/RealtimeAnalyser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/RealtimeAnalyser.h
diff --git a/Source/modules/webaudio/RealtimeAnalyser.h b/Source/modules/webaudio/RealtimeAnalyser.h
index 49c1df8b73408210dd14f9c5d0349f87aab76e81..363d74e2bc5a43e3046c7fef2fe90eb401f4aeee 100644
--- a/Source/modules/webaudio/RealtimeAnalyser.h
+++ b/Source/modules/webaudio/RealtimeAnalyser.h
@@ -40,7 +40,7 @@ class RealtimeAnalyser {
public:
RealtimeAnalyser();
virtual ~RealtimeAnalyser();
-
+
void reset();
size_t fftSize() const { return m_fftSize; }
@@ -77,19 +77,19 @@ private:
// The audio thread writes the input audio here.
AudioFloatArray m_inputBuffer;
unsigned m_writeIndex;
-
+
size_t m_fftSize;
OwnPtr<FFTFrame> m_analysisFrame;
void doFFTAnalysis();
-
+
// doFFTAnalysis() stores the floating-point magnitude analysis data here.
AudioFloatArray m_magnitudeBuffer;
AudioFloatArray& magnitudeBuffer() { return m_magnitudeBuffer; }
// A value between 0 and 1 which averages the previous version of m_magnitudeBuffer with the current analysis magnitude data.
- double m_smoothingTimeConstant;
+ double m_smoothingTimeConstant;
- // The range used when converting when using getByteFrequencyData().
+ // The range used when converting when using getByteFrequencyData().
double m_minDecibels;
double m_maxDecibels;
};
« no previous file with comments | « Source/modules/webaudio/PannerNode.idl ('k') | Source/modules/webaudio/RealtimeAnalyser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698