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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.h

Issue 2471353004: Implement AudioScheduledSourceNode (Closed)
Patch Set: Rebaseline test Created 3 years, 12 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
Index: third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.h b/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.h
index ac491cb8a907cbc339b471a4c8bf2ca7dbaa612e..f56919f4a6d42a5d0629ed22206123698771a813 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioScheduledSourceNode.h
@@ -30,7 +30,7 @@
#define AudioScheduledSourceNode_h
#include "bindings/core/v8/ActiveScriptWrappable.h"
-#include "modules/webaudio/AudioSourceNode.h"
+#include "modules/webaudio/AudioNode.h"
namespace blink {
@@ -125,9 +125,10 @@ class AudioScheduledSourceHandler : public AudioHandler {
};
class AudioScheduledSourceNode
- : public AudioSourceNode,
+ : public AudioNode,
public ActiveScriptWrappable<AudioScheduledSourceNode> {
USING_GARBAGE_COLLECTED_MIXIN(AudioScheduledSourceNode);
+ DEFINE_WRAPPERTYPEINFO();
public:
void start(ExceptionState&);
@@ -141,7 +142,7 @@ class AudioScheduledSourceNode
// ScriptWrappable:
bool hasPendingActivity() const final;
- DEFINE_INLINE_VIRTUAL_TRACE() { AudioSourceNode::trace(visitor); }
+ DEFINE_INLINE_VIRTUAL_TRACE() { AudioNode::trace(visitor); }
protected:
explicit AudioScheduledSourceNode(BaseAudioContext&);

Powered by Google App Engine
This is Rietveld 408576698