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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 years, 11 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/OscillatorNode.h ('k') | Source/modules/webaudio/ScriptProcessorNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/PannerNode.h
diff --git a/Source/modules/webaudio/PannerNode.h b/Source/modules/webaudio/PannerNode.h
index f1a4712219acdd65223bfb73084da0cfaa7e735c..3f0c0756ee40f12fcdcd7abea643ef94c5aa20ec 100644
--- a/Source/modules/webaudio/PannerNode.h
+++ b/Source/modules/webaudio/PannerNode.h
@@ -45,7 +45,7 @@ namespace WebCore {
// A cone effect will attenuate the gain as the orientation moves away from the listener.
// All of these effects follow the OpenAL specification very closely.
-class PannerNode : public AudioNode {
+class PannerNode FINAL : public AudioNode {
public:
// These must be defined as in the .idl file and must match those in the Panner class.
enum {
@@ -70,11 +70,11 @@ public:
virtual ~PannerNode();
// AudioNode
- virtual void process(size_t framesToProcess);
- virtual void pullInputs(size_t framesToProcess);
- virtual void reset();
- virtual void initialize();
- virtual void uninitialize();
+ virtual void process(size_t framesToProcess) OVERRIDE;
+ virtual void pullInputs(size_t framesToProcess) OVERRIDE;
+ virtual void reset() OVERRIDE;
+ virtual void initialize() OVERRIDE;
+ virtual void uninitialize() OVERRIDE;
// Listener
AudioListener* listener();
« no previous file with comments | « Source/modules/webaudio/OscillatorNode.h ('k') | Source/modules/webaudio/ScriptProcessorNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698