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

Unified Diff: Source/modules/webaudio/AnalyserNode.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/vibration/NavigatorVibration.h ('k') | Source/modules/webaudio/AudioBasicInspectorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AnalyserNode.h
diff --git a/Source/modules/webaudio/AnalyserNode.h b/Source/modules/webaudio/AnalyserNode.h
index e73c365af849048f98084657028dd459540f8499..6dfb6ee1d9daed93b726d3606cce2e63549accf9 100644
--- a/Source/modules/webaudio/AnalyserNode.h
+++ b/Source/modules/webaudio/AnalyserNode.h
@@ -33,7 +33,7 @@ namespace blink {
class ExceptionState;
-class AnalyserNode FINAL : public AudioBasicInspectorNode {
+class AnalyserNode final : public AudioBasicInspectorNode {
DEFINE_WRAPPERTYPEINFO();
public:
static AnalyserNode* create(AudioContext* context, float sampleRate)
@@ -44,8 +44,8 @@ public:
virtual ~AnalyserNode();
// AudioNode
- virtual void dispose() OVERRIDE;
- virtual void process(size_t framesToProcess) OVERRIDE;
+ virtual void dispose() override;
+ virtual void process(size_t framesToProcess) override;
// Javascript bindings
unsigned fftSize() const { return m_analyser.fftSize(); }
@@ -67,8 +67,8 @@ public:
void getFloatTimeDomainData(Float32Array* array) { m_analyser.getFloatTimeDomainData(array); }
void getByteTimeDomainData(Uint8Array* array) { m_analyser.getByteTimeDomainData(array); }
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; }
AnalyserNode(AudioContext*, float sampleRate);
« no previous file with comments | « Source/modules/vibration/NavigatorVibration.h ('k') | Source/modules/webaudio/AudioBasicInspectorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698