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

Unified Diff: Source/modules/webaudio/ChannelMergerNode.h

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 e2b3fe13edb6841ad206ea25efaea61824ead413..58804845936bb9948cfd34518ab8bdf399e0de18 100644
--- a/Source/modules/webaudio/ChannelMergerNode.h
+++ b/Source/modules/webaudio/ChannelMergerNode.h
@@ -36,22 +36,22 @@ namespace blink {
class AudioContext;
-class ChannelMergerNode FINAL : public AudioNode {
+class ChannelMergerNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
static ChannelMergerNode* create(AudioContext*, float sampleRate, unsigned numberOfInputs);
// AudioNode
- virtual void process(size_t framesToProcess) OVERRIDE;
+ virtual void process(size_t framesToProcess) override;
// Called in the audio thread (pre-rendering task) when the number of channels for an input may have changed.
- virtual void checkNumberOfChannelsForInput(AudioNodeInput*) OVERRIDE;
+ virtual void checkNumberOfChannelsForInput(AudioNodeInput*) override;
private:
unsigned m_desiredNumberOfOutputChannels;
- virtual double tailTime() const OVERRIDE { return 0; }
- virtual double latencyTime() const OVERRIDE { return 0; }
+ virtual double tailTime() const override { return 0; }
+ virtual double latencyTime() const override { return 0; }
ChannelMergerNode(AudioContext*, 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