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

Unified Diff: Source/modules/webaudio/StereoPannerNode.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/ScriptProcessorNode.h ('k') | Source/modules/webaudio/WaveShaperDSPKernel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/StereoPannerNode.h
diff --git a/Source/modules/webaudio/StereoPannerNode.h b/Source/modules/webaudio/StereoPannerNode.h
index 359ce7f23b2a3e3ea8d6672086c72cf7907de1e8..a6e7262fe2dffb8ff5f53ab11ab598261970916b 100644
--- a/Source/modules/webaudio/StereoPannerNode.h
+++ b/Source/modules/webaudio/StereoPannerNode.h
@@ -17,13 +17,13 @@ namespace blink {
class StereoPannerHandler final : public AudioHandler {
public:
static PassRefPtr<StereoPannerHandler> create(AudioNode&, float sampleRate, AudioParamHandler& pan);
- virtual ~StereoPannerHandler();
+ ~StereoPannerHandler() override;
- virtual void process(size_t framesToProcess) override;
- virtual void initialize() override;
+ void process(size_t framesToProcess) override;
+ void initialize() override;
- virtual void setChannelCount(unsigned long, ExceptionState&) final;
- virtual void setChannelCountMode(const String&, ExceptionState&) final;
+ void setChannelCount(unsigned long, ExceptionState&) final;
+ void setChannelCountMode(const String&, ExceptionState&) final;
private:
StereoPannerHandler(AudioNode&, float sampleRate, AudioParamHandler& pan);
« no previous file with comments | « Source/modules/webaudio/ScriptProcessorNode.h ('k') | Source/modules/webaudio/WaveShaperDSPKernel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698