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

Unified Diff: Source/modules/webaudio/ConvolverNode.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
Index: Source/modules/webaudio/ConvolverNode.h
diff --git a/Source/modules/webaudio/ConvolverNode.h b/Source/modules/webaudio/ConvolverNode.h
index ef3d4f07afcf84acd8f09e81128ac42ec13554f5..81437670715eb45deaf3ff978aedc4e0e4e09ead 100644
--- a/Source/modules/webaudio/ConvolverNode.h
+++ b/Source/modules/webaudio/ConvolverNode.h
@@ -40,10 +40,10 @@ class Reverb;
class MODULES_EXPORT ConvolverHandler final : public AudioHandler {
public:
static PassRefPtr<ConvolverHandler> create(AudioNode&, float sampleRate);
- virtual ~ConvolverHandler();
+ ~ConvolverHandler() override;
// AudioHandler
- virtual void process(size_t framesToProcess) override;
+ void process(size_t framesToProcess) override;
// Impulse responses
void setBuffer(AudioBuffer*, ExceptionState&);
@@ -54,8 +54,8 @@ public:
private:
ConvolverHandler(AudioNode&, float sampleRate);
- virtual double tailTime() const override;
- virtual double latencyTime() const override;
+ double tailTime() const override;
+ double latencyTime() const override;
OwnPtr<Reverb> m_reverb;
// This Persistent doesn't make a reference cycle including the owner
« no previous file with comments | « Source/modules/webaudio/ChannelSplitterNode.h ('k') | Source/modules/webaudio/DefaultAudioDestinationNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698