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

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

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 003c0718f0349091b220a5d89f8c10f19142a2a1..35d8d3bd3cbde4d8bdd95eba8728e134e80972f7 100644
--- a/Source/platform/audio/AudioDelayDSPKernel.h
+++ b/Source/platform/audio/AudioDelayDSPKernel.h
@@ -34,8 +34,8 @@ class PLATFORM_EXPORT AudioDelayDSPKernel : public AudioDSPKernel {
public:
AudioDelayDSPKernel(double maxDelayTime, float sampleRate);
- virtual void process(const float* source, float* destination, size_t framesToProcess);
- virtual void reset();
+ virtual void process(const float* source, float* destination, size_t framesToProcess) OVERRIDE;
+ virtual void reset() OVERRIDE;
double maxDelayTime() const { return m_maxDelayTime; }
« 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