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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/modules/webaudio/BiquadDSPKernel.h ('k') | Source/modules/webaudio/ChannelMergerNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/BiquadProcessor.h
diff --git a/Source/modules/webaudio/BiquadProcessor.h b/Source/modules/webaudio/BiquadProcessor.h
index 5255ffdc1dd2898d0e1b0355cf9dd91a1acaa17d..8b9f8ead82bc64bfa24684c38e51ef08997925d4 100644
--- a/Source/modules/webaudio/BiquadProcessor.h
+++ b/Source/modules/webaudio/BiquadProcessor.h
@@ -50,11 +50,11 @@ public:
};
BiquadProcessor(float sampleRate, size_t numberOfChannels, AudioParamHandler& frequency, AudioParamHandler& q, AudioParamHandler& gain, AudioParamHandler& detune);
- virtual ~BiquadProcessor();
+ ~BiquadProcessor() override;
- virtual PassOwnPtr<AudioDSPKernel> createKernel() override;
+ PassOwnPtr<AudioDSPKernel> createKernel() override;
- virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) override;
+ void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess) override;
// Get the magnitude and phase response of the filter at the given
// set of frequencies (in Hz). The phase response is in radians.
« no previous file with comments | « Source/modules/webaudio/BiquadDSPKernel.h ('k') | Source/modules/webaudio/ChannelMergerNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698