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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ 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/modules/webaudio/DelayNode.h ('k') | Source/modules/webaudio/DynamicsCompressorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/DelayProcessor.h
diff --git a/Source/modules/webaudio/DelayProcessor.h b/Source/modules/webaudio/DelayProcessor.h
index 779aa7682e65c0c694dd8ef36431ea16a172beca..0ad48c31c519357755c2d91b4f0319be8f8ac5f4 100644
--- a/Source/modules/webaudio/DelayProcessor.h
+++ b/Source/modules/webaudio/DelayProcessor.h
@@ -34,12 +34,12 @@ namespace WebCore {
class AudioDSPKernel;
-class DelayProcessor : public AudioDSPKernelProcessor {
+class DelayProcessor FINAL : public AudioDSPKernelProcessor {
public:
DelayProcessor(AudioContext*, float sampleRate, unsigned numberOfChannels, double maxDelayTime);
virtual ~DelayProcessor();
- virtual PassOwnPtr<AudioDSPKernel> createKernel();
+ virtual PassOwnPtr<AudioDSPKernel> createKernel() OVERRIDE;
AudioParam* delayTime() const { return m_delayTime.get(); }
« no previous file with comments | « Source/modules/webaudio/DelayNode.h ('k') | Source/modules/webaudio/DynamicsCompressorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698