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

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

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/ScriptProcessorNode.h ('k') | Source/modules/webaudio/WaveShaperNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/WaveShaperDSPKernel.h
diff --git a/Source/modules/webaudio/WaveShaperDSPKernel.h b/Source/modules/webaudio/WaveShaperDSPKernel.h
index 172c8298544b36c0f4537d97c152a08bb1906d46..a3e36f74bb2b4aced64497ed2f24e4aeddd28f35 100644
--- a/Source/modules/webaudio/WaveShaperDSPKernel.h
+++ b/Source/modules/webaudio/WaveShaperDSPKernel.h
@@ -38,15 +38,15 @@ class WaveShaperProcessor;
// WaveShaperDSPKernel is an AudioDSPKernel and is responsible for non-linear distortion on one channel.
-class WaveShaperDSPKernel FINAL : public AudioDSPKernel {
+class WaveShaperDSPKernel final : public AudioDSPKernel {
public:
explicit WaveShaperDSPKernel(WaveShaperProcessor*);
// AudioDSPKernel
- virtual void process(const float* source, float* dest, size_t framesToProcess) OVERRIDE;
- virtual void reset() OVERRIDE;
- virtual double tailTime() const OVERRIDE { return 0; }
- virtual double latencyTime() const OVERRIDE;
+ virtual void process(const float* source, float* dest, size_t framesToProcess) override;
+ virtual void reset() override;
+ virtual double tailTime() const override { return 0; }
+ virtual double latencyTime() const override;
// Oversampling requires more resources, so let's only allocate them if needed.
void lazyInitializeOversampling();
« no previous file with comments | « Source/modules/webaudio/ScriptProcessorNode.h ('k') | Source/modules/webaudio/WaveShaperNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698