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

Unified Diff: Source/modules/webaudio/AnalyserNode.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/vr/VRController.h ('k') | Source/modules/webaudio/AudioBasicInspectorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AnalyserNode.h
diff --git a/Source/modules/webaudio/AnalyserNode.h b/Source/modules/webaudio/AnalyserNode.h
index 4afcb30b3d3a45ef02cf1db2e8182691a613f36e..1dbcb33bc54a5f975a5c44a70c6ece42c9e355b4 100644
--- a/Source/modules/webaudio/AnalyserNode.h
+++ b/Source/modules/webaudio/AnalyserNode.h
@@ -36,10 +36,10 @@ class ExceptionState;
class AnalyserHandler final : public AudioBasicInspectorHandler {
public:
static PassRefPtr<AnalyserHandler> create(AudioNode&, float sampleRate);
- virtual ~AnalyserHandler();
+ ~AnalyserHandler() override;
// AudioHandler
- virtual void process(size_t framesToProcess) override;
+ void process(size_t framesToProcess) override;
unsigned fftSize() const { return m_analyser.fftSize(); }
void setFftSize(unsigned size, ExceptionState&);
« no previous file with comments | « Source/modules/vr/VRController.h ('k') | Source/modules/webaudio/AudioBasicInspectorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698