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

Unified Diff: Source/modules/webaudio/ScriptProcessorNode.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/PannerNode.h ('k') | Source/modules/webaudio/StereoPannerNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/ScriptProcessorNode.h
diff --git a/Source/modules/webaudio/ScriptProcessorNode.h b/Source/modules/webaudio/ScriptProcessorNode.h
index bebdf2a4ee827735fdaf8c7440200f0a198807bb..064b6d2dbc13a971d661cd7af6bc2ddeb5344d12 100644
--- a/Source/modules/webaudio/ScriptProcessorNode.h
+++ b/Source/modules/webaudio/ScriptProcessorNode.h
@@ -46,23 +46,23 @@ class AudioContext;
class ScriptProcessorHandler final : public AudioHandler {
public:
static PassRefPtr<ScriptProcessorHandler> create(AudioNode&, float sampleRate, size_t bufferSize, unsigned numberOfInputChannels, unsigned numberOfOutputChannels);
- virtual ~ScriptProcessorHandler();
+ ~ScriptProcessorHandler() override;
// AudioHandler
- virtual void process(size_t framesToProcess) override;
- virtual void initialize() override;
+ void process(size_t framesToProcess) override;
+ void initialize() override;
size_t bufferSize() const { return m_bufferSize; }
- virtual void setChannelCount(unsigned long, ExceptionState&) override;
- virtual void setChannelCountMode(const String&, ExceptionState&) override;
+ void setChannelCount(unsigned long, ExceptionState&) override;
+ void setChannelCountMode(const String&, ExceptionState&) override;
virtual unsigned numberOfOutputChannels() const { return m_numberOfOutputChannels; }
private:
ScriptProcessorHandler(AudioNode&, float sampleRate, size_t bufferSize, unsigned numberOfInputChannels, unsigned numberOfOutputChannels);
- virtual double tailTime() const override;
- virtual double latencyTime() const override;
+ double tailTime() const override;
+ double latencyTime() const override;
void fireProcessEvent();
« no previous file with comments | « Source/modules/webaudio/PannerNode.h ('k') | Source/modules/webaudio/StereoPannerNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698