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

Unified Diff: Source/modules/webaudio/DelayDSPKernel.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/DefaultAudioDestinationNode.cpp ('k') | Source/modules/webaudio/DelayProcessor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/DelayDSPKernel.h
diff --git a/Source/modules/webaudio/DelayDSPKernel.h b/Source/modules/webaudio/DelayDSPKernel.h
index 374642c65aea318495807a1503751af786b9d6ff..ca23f0ec771da9fc2c42260551c74e5fad1072d8 100644
--- a/Source/modules/webaudio/DelayDSPKernel.h
+++ b/Source/modules/webaudio/DelayDSPKernel.h
@@ -32,17 +32,17 @@
namespace WebCore {
class DelayProcessor;
-
+
class DelayDSPKernel : public AudioDSPKernel {
-public:
+public:
explicit DelayDSPKernel(DelayProcessor*);
DelayDSPKernel(double maxDelayTime, float sampleRate);
-
+
virtual void process(const float* source, float* destination, size_t framesToProcess);
virtual void reset();
-
+
double maxDelayTime() const { return m_maxDelayTime; }
-
+
void setDelayFrames(double numberOfFrames) { m_desiredDelayFrames = numberOfFrames; }
virtual double tailTime() const OVERRIDE;
« no previous file with comments | « Source/modules/webaudio/DefaultAudioDestinationNode.cpp ('k') | Source/modules/webaudio/DelayProcessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698