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

Unified Diff: third_party/WebKit/Source/modules/webaudio/GainNode.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/GainNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/GainNode.h b/third_party/WebKit/Source/modules/webaudio/GainNode.h
index da401a65dea6686d414015fca679d3a400673e00..730a4fd28ef740cc649514fed9a6dc21c8306f5e 100644
--- a/third_party/WebKit/Source/modules/webaudio/GainNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/GainNode.h
@@ -32,7 +32,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
// GainNode is an AudioNode with one input and one output which applies a gain (volume) change to the audio signal.
// De-zippering (smoothing) is applied when the gain value is changed dynamically.
@@ -59,13 +59,13 @@ private:
class GainNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static GainNode* create(AbstractAudioContext&, float sampleRate);
+ static GainNode* create(BaseAudioContext&, float sampleRate);
DECLARE_VIRTUAL_TRACE();
AudioParam* gain() const;
private:
- GainNode(AbstractAudioContext&, float sampleRate);
+ GainNode(BaseAudioContext&, float sampleRate);
Member<AudioParam> m_gain;
};

Powered by Google App Engine
This is Rietveld 408576698