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

Unified Diff: Source/modules/webaudio/AudioBasicInspectorNode.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/AnalyserNode.h ('k') | Source/modules/webaudio/AudioBasicProcessorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioBasicInspectorNode.h
diff --git a/Source/modules/webaudio/AudioBasicInspectorNode.h b/Source/modules/webaudio/AudioBasicInspectorNode.h
index 3a880d2f25113b81b9cacd83314389d619f04e25..084e12f68dbe5f05768cbfa7e5c49173d5e120db 100644
--- a/Source/modules/webaudio/AudioBasicInspectorNode.h
+++ b/Source/modules/webaudio/AudioBasicInspectorNode.h
@@ -39,10 +39,10 @@ public:
AudioBasicInspectorNode(AudioContext*, float sampleRate, unsigned outputChannelCount);
// AudioNode
- virtual void pullInputs(size_t framesToProcess) OVERRIDE FINAL;
- virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&) OVERRIDE FINAL;
- virtual void disconnect(unsigned outputIndex, ExceptionState&) OVERRIDE FINAL;
- virtual void checkNumberOfChannelsForInput(AudioNodeInput*) OVERRIDE FINAL;
+ virtual void pullInputs(size_t framesToProcess) override final;
+ virtual void connect(AudioNode*, unsigned outputIndex, unsigned inputIndex, ExceptionState&) override final;
+ virtual void disconnect(unsigned outputIndex, ExceptionState&) override final;
+ virtual void checkNumberOfChannelsForInput(AudioNodeInput*) override final;
private:
void updatePullStatus();
« no previous file with comments | « Source/modules/webaudio/AnalyserNode.h ('k') | Source/modules/webaudio/AudioBasicProcessorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698