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

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

Issue 1214463003: Split "Online" and "Offline" AudioContext processing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Bring to ToT 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/DeferredTaskHandler.cpp ('k') | Source/modules/webaudio/DelayNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/DelayNode.h
diff --git a/Source/modules/webaudio/DelayNode.h b/Source/modules/webaudio/DelayNode.h
index f1465bac2f8c262d3c3d0a05553e63115ad31639..03d01889136b2ab82fad2c38bb9068f789b1beb9 100644
--- a/Source/modules/webaudio/DelayNode.h
+++ b/Source/modules/webaudio/DelayNode.h
@@ -29,17 +29,18 @@
namespace blink {
+class AbstractAudioContext;
class ExceptionState;
class DelayNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static DelayNode* create(AudioContext&, float sampleRate, double maxDelayTime, ExceptionState&);
+ static DelayNode* create(AbstractAudioContext&, float sampleRate, double maxDelayTime, ExceptionState&);
DECLARE_VIRTUAL_TRACE();
AudioParam* delayTime();
private:
- DelayNode(AudioContext&, float sampleRate, double maxDelayTime);
+ DelayNode(AbstractAudioContext&, float sampleRate, double maxDelayTime);
Member<AudioParam> m_delayTime;
};
« no previous file with comments | « Source/modules/webaudio/DeferredTaskHandler.cpp ('k') | Source/modules/webaudio/DelayNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698