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

Unified Diff: Source/modules/webaudio/ChannelMergerNode.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/BiquadProcessor.h ('k') | Source/modules/webaudio/ChannelSplitterNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/ChannelMergerNode.h
diff --git a/Source/modules/webaudio/ChannelMergerNode.h b/Source/modules/webaudio/ChannelMergerNode.h
index e17da1f4dcf587cad4828c3ada8b6eb5e2135779..e4374f1cead755956eafab25a709a0e0e3a82909 100644
--- a/Source/modules/webaudio/ChannelMergerNode.h
+++ b/Source/modules/webaudio/ChannelMergerNode.h
@@ -40,9 +40,9 @@ class ChannelMergerHandler final : public AudioHandler {
public:
static PassRefPtr<ChannelMergerHandler> create(AudioNode&, float sampleRate, unsigned numberOfInputs);
- virtual void process(size_t framesToProcess) override;
- virtual void setChannelCount(unsigned long, ExceptionState&) final;
- virtual void setChannelCountMode(const String&, ExceptionState&) final;
+ void process(size_t framesToProcess) override;
+ void setChannelCount(unsigned long, ExceptionState&) final;
+ void setChannelCountMode(const String&, ExceptionState&) final;
private:
ChannelMergerHandler(AudioNode&, float sampleRate, unsigned numberOfInputs);
« no previous file with comments | « Source/modules/webaudio/BiquadProcessor.h ('k') | Source/modules/webaudio/ChannelSplitterNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698