| Index: Source/modules/webaudio/AudioNode.h
|
| diff --git a/Source/modules/webaudio/AudioNode.h b/Source/modules/webaudio/AudioNode.h
|
| index 61fc047bdd52f329d8ef47b0968e7c7f07cdbd5c..be15d602d93c39f590d55617f7fbf933524bed44 100644
|
| --- a/Source/modules/webaudio/AudioNode.h
|
| +++ b/Source/modules/webaudio/AudioNode.h
|
| @@ -181,8 +181,8 @@ public:
|
| AudioBus::ChannelInterpretation internalChannelInterpretation() const { return m_channelInterpretation; }
|
|
|
| // EventTarget
|
| - virtual const AtomicString& interfaceName() const OVERRIDE;
|
| - virtual ExecutionContext* executionContext() const OVERRIDE;
|
| + virtual const AtomicString& interfaceName() const OVERRIDE FINAL;
|
| + virtual ExecutionContext* executionContext() const OVERRIDE FINAL;
|
|
|
| protected:
|
| // Inputs and outputs must be created before the AudioNode is initialized.
|
| @@ -220,8 +220,8 @@ private:
|
| static int s_nodeCount[NodeTypeEnd];
|
| #endif
|
|
|
| - virtual void refEventTarget() OVERRIDE { ref(); }
|
| - virtual void derefEventTarget() OVERRIDE { deref(); }
|
| + virtual void refEventTarget() OVERRIDE FINAL { ref(); }
|
| + virtual void derefEventTarget() OVERRIDE FINAL { deref(); }
|
|
|
| protected:
|
| unsigned m_channelCount;
|
|
|