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

Unified Diff: Source/modules/webaudio/OscillatorNode.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/OfflineAudioDestinationNode.cpp ('k') | Source/modules/webaudio/OscillatorNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/OscillatorNode.h
diff --git a/Source/modules/webaudio/OscillatorNode.h b/Source/modules/webaudio/OscillatorNode.h
index 0cb2846016e5a4e5d057ac57514e80a29094cc17..66a0497daffb30cbf8b6f688fba217adc2db3daf 100644
--- a/Source/modules/webaudio/OscillatorNode.h
+++ b/Source/modules/webaudio/OscillatorNode.h
@@ -35,7 +35,7 @@
namespace blink {
-class AudioContext;
+class AbstractAudioContext;
class ExceptionState;
class PeriodicWave;
@@ -103,7 +103,7 @@ private:
class OscillatorNode final : public AudioScheduledSourceNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static OscillatorNode* create(AudioContext&, float sampleRate);
+ static OscillatorNode* create(AbstractAudioContext&, float sampleRate);
DECLARE_VIRTUAL_TRACE();
String type() const;
@@ -113,7 +113,7 @@ public:
void setPeriodicWave(PeriodicWave*);
private:
- OscillatorNode(AudioContext&, float sampleRate);
+ OscillatorNode(AbstractAudioContext&, float sampleRate);
OscillatorHandler& oscillatorHandler() const;
Member<AudioParam> m_frequency;
« no previous file with comments | « Source/modules/webaudio/OfflineAudioDestinationNode.cpp ('k') | Source/modules/webaudio/OscillatorNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698