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

Unified Diff: Source/modules/webaudio/ChannelSplitterNode.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/ChannelMergerNode.h ('k') | Source/modules/webaudio/ConvolverNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/ChannelSplitterNode.h
diff --git a/Source/modules/webaudio/ChannelSplitterNode.h b/Source/modules/webaudio/ChannelSplitterNode.h
index 12a64f55652bb84f4e0d00690d7242227cb669db..fdba9e99cdb26700cb172c17d7abf4720f029680 100644
--- a/Source/modules/webaudio/ChannelSplitterNode.h
+++ b/Source/modules/webaudio/ChannelSplitterNode.h
@@ -32,17 +32,17 @@ namespace blink {
class AudioContext;
-class ChannelSplitterNode FINAL : public AudioNode {
+class ChannelSplitterNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
static ChannelSplitterNode* create(AudioContext*, float sampleRate, unsigned numberOfOutputs);
// AudioNode
- virtual void process(size_t framesToProcess) OVERRIDE;
+ virtual void process(size_t framesToProcess) override;
private:
- 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; }
ChannelSplitterNode(AudioContext*, float sampleRate, unsigned numberOfOutputs);
};
« no previous file with comments | « Source/modules/webaudio/ChannelMergerNode.h ('k') | Source/modules/webaudio/ConvolverNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698