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

Unified Diff: Source/modules/webaudio/PannerNode.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/OscillatorNode.h ('k') | Source/modules/webaudio/ScriptProcessorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/PannerNode.h
diff --git a/Source/modules/webaudio/PannerNode.h b/Source/modules/webaudio/PannerNode.h
index 3e3d805b89c0752ee002aacd4f4b71f7de0fd16c..60c91863edb247d20ef037ff041d275902a2d100 100644
--- a/Source/modules/webaudio/PannerNode.h
+++ b/Source/modules/webaudio/PannerNode.h
@@ -53,12 +53,12 @@ public:
};
static PassRefPtr<PannerHandler> create(AudioNode&, float sampleRate);
- virtual ~PannerHandler();
+ ~PannerHandler() override;
// AudioHandler
- virtual void process(size_t framesToProcess) override;
- virtual void initialize() override;
- virtual void uninitialize() override;
+ void process(size_t framesToProcess) override;
+ void initialize() override;
+ void uninitialize() override;
// Panning model
String panningModel() const;
@@ -97,11 +97,11 @@ public:
// It must be called on audio thread, currently called only process() in AudioBufferSourceNode.
double dopplerRate();
- virtual double tailTime() const override { return m_panner ? m_panner->tailTime() : 0; }
- virtual double latencyTime() const override { return m_panner ? m_panner->latencyTime() : 0; }
+ double tailTime() const override { return m_panner ? m_panner->tailTime() : 0; }
+ double latencyTime() const override { return m_panner ? m_panner->latencyTime() : 0; }
- 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:
PannerHandler(AudioNode&, float sampleRate);
« no previous file with comments | « Source/modules/webaudio/OscillatorNode.h ('k') | Source/modules/webaudio/ScriptProcessorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698