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

Unified Diff: Source/platform/audio/AudioDelayDSPKernel.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/platform/audio/AudioDSPKernelProcessor.h ('k') | Source/platform/audio/AudioDestination.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/audio/AudioDelayDSPKernel.h
diff --git a/Source/platform/audio/AudioDelayDSPKernel.h b/Source/platform/audio/AudioDelayDSPKernel.h
index 386c125a069e4569b71a95b8b4062089d9734fcc..4b7fd19ec95673eabd1e6258b082e4ad5e39ab18 100644
--- a/Source/platform/audio/AudioDelayDSPKernel.h
+++ b/Source/platform/audio/AudioDelayDSPKernel.h
@@ -34,15 +34,15 @@ class PLATFORM_EXPORT AudioDelayDSPKernel : public AudioDSPKernel {
public:
AudioDelayDSPKernel(double maxDelayTime, float sampleRate);
- virtual void process(const float* source, float* destination, size_t framesToProcess) override;
- virtual void reset() override;
+ void process(const float* source, float* destination, size_t framesToProcess) override;
+ void reset() override;
double maxDelayTime() const { return m_maxDelayTime; }
void setDelayFrames(double numberOfFrames) { m_desiredDelayFrames = numberOfFrames; }
- virtual double tailTime() const override;
- virtual double latencyTime() const override;
+ double tailTime() const override;
+ double latencyTime() const override;
protected:
AudioDelayDSPKernel(AudioDSPKernelProcessor*, size_t processingSizeInFrames);
« no previous file with comments | « Source/platform/audio/AudioDSPKernelProcessor.h ('k') | Source/platform/audio/AudioDestination.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698