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

Unified Diff: Source/modules/webaudio/GainNode.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/GainNode.h
diff --git a/Source/modules/webaudio/GainNode.h b/Source/modules/webaudio/GainNode.h
index 8794a3f94d85f8f672ddfd8cf03c22936d8faff3..923ae57213ae546a9a2a22a010c85121e8d7e2cc 100644
--- a/Source/modules/webaudio/GainNode.h
+++ b/Source/modules/webaudio/GainNode.h
@@ -42,10 +42,10 @@ public:
static PassRefPtr<GainHandler> create(AudioNode&, float sampleRate, AudioParamHandler& gain);
// AudioHandler
- virtual void process(size_t framesToProcess) override;
+ void process(size_t framesToProcess) override;
// Called in the main thread when the number of channels for the input may have changed.
- virtual void checkNumberOfChannelsForInput(AudioNodeInput*) override;
+ void checkNumberOfChannelsForInput(AudioNodeInput*) override;
private:
GainHandler(AudioNode&, float sampleRate, AudioParamHandler& gain);
« no previous file with comments | « Source/modules/webaudio/DynamicsCompressorNode.h ('k') | Source/modules/webaudio/MediaElementAudioSourceNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698