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

Unified Diff: Source/modules/webaudio/OfflineAudioDestinationNode.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/OfflineAudioContext.h ('k') | Source/modules/webaudio/OscillatorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/OfflineAudioDestinationNode.h
diff --git a/Source/modules/webaudio/OfflineAudioDestinationNode.h b/Source/modules/webaudio/OfflineAudioDestinationNode.h
index ca70d96aa1f5974f2f96f337040ff40479475c2d..6e9c85b9ff6348eb73e7dc6ae00468162c2109b8 100644
--- a/Source/modules/webaudio/OfflineAudioDestinationNode.h
+++ b/Source/modules/webaudio/OfflineAudioDestinationNode.h
@@ -39,18 +39,18 @@ class AudioContext;
class OfflineAudioDestinationHandler final : public AudioDestinationHandler {
public:
static PassRefPtr<OfflineAudioDestinationHandler> create(AudioNode&, AudioBuffer* renderTarget);
- virtual ~OfflineAudioDestinationHandler();
+ ~OfflineAudioDestinationHandler() override;
// AudioHandler
- virtual void dispose() override;
- virtual void initialize() override;
- virtual void uninitialize() override;
+ void dispose() override;
+ void initialize() override;
+ void uninitialize() override;
// AudioDestinationHandler
- virtual void startRendering() override;
- virtual void stopRendering() override;
+ void startRendering() override;
+ void stopRendering() override;
- virtual float sampleRate() const override { return m_renderTarget->sampleRate(); }
+ float sampleRate() const override { return m_renderTarget->sampleRate(); }
private:
OfflineAudioDestinationHandler(AudioNode&, AudioBuffer* renderTarget);
« no previous file with comments | « Source/modules/webaudio/OfflineAudioContext.h ('k') | Source/modules/webaudio/OscillatorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698