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

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

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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/AudioBufferSourceNode.h ('k') | Source/modules/webaudio/AudioDestinationNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioContext.h
diff --git a/Source/modules/webaudio/AudioContext.h b/Source/modules/webaudio/AudioContext.h
index 092eece9ac5f427e7bf33a1913c3ae1f5dd9c4b4..00ad293d1871fc1652a6a21484e9476e32073193 100644
--- a/Source/modules/webaudio/AudioContext.h
+++ b/Source/modules/webaudio/AudioContext.h
@@ -95,7 +95,7 @@ public:
// Create an AudioContext for rendering to the audio hardware.
static AudioContext* create(Document&, ExceptionState&);
- virtual ~AudioContext();
+ ~AudioContext() override;
DECLARE_VIRTUAL_TRACE();
@@ -103,8 +103,8 @@ public:
bool isOfflineContext() { return m_isOfflineContext; }
// Document notification
- virtual void stop() override final;
- virtual bool hasPendingActivity() const override;
+ void stop() final;
+ bool hasPendingActivity() const override;
AudioDestinationNode* destination() { return m_destinationNode.get(); }
@@ -216,8 +216,8 @@ public:
static unsigned maxNumberOfChannels() { return MaxNumberOfChannels;}
// EventTarget
- virtual const AtomicString& interfaceName() const override final;
- virtual ExecutionContext* executionContext() const override final;
+ const AtomicString& interfaceName() const final;
+ ExecutionContext* executionContext() const final;
DEFINE_ATTRIBUTE_EVENT_LISTENER(complete);
DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange);
« no previous file with comments | « Source/modules/webaudio/AudioBufferSourceNode.h ('k') | Source/modules/webaudio/AudioDestinationNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698