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

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

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/OscillatorNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
index d80f27dc84e8bbc7409c4146d7e1d00cbe016600..16a60e900211ca8d60e25b1df623bb2f2275ffb0 100644
--- a/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/OscillatorNode.h
@@ -35,7 +35,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class PeriodicWave;
@@ -100,7 +100,7 @@ private:
class OscillatorNode final : public AudioScheduledSourceNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static OscillatorNode* create(AbstractAudioContext&, float sampleRate);
+ static OscillatorNode* create(BaseAudioContext&, float sampleRate);
DECLARE_VIRTUAL_TRACE();
String type() const;
@@ -110,7 +110,7 @@ public:
void setPeriodicWave(PeriodicWave*);
private:
- OscillatorNode(AbstractAudioContext&, float sampleRate);
+ OscillatorNode(BaseAudioContext&, float sampleRate);
OscillatorHandler& oscillatorHandler() const;
Member<AudioParam> m_frequency;

Powered by Google App Engine
This is Rietveld 408576698