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

Unified Diff: third_party/WebKit/Source/modules/webaudio/PannerNode.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/PannerNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/PannerNode.h b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
index a12095ebb48de6c9a4025fd4f7f208b8211d8fe4..0db4f5da381f72819f97dd26b034484fa9abf82c 100644
--- a/third_party/WebKit/Source/modules/webaudio/PannerNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
@@ -36,7 +36,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
// PannerNode is an AudioNode with one input and one output.
// It positions a sound in 3D space, with the exact effect dependent on the panning model.
@@ -102,7 +102,7 @@ public:
private:
PannerHandler(AudioNode&, float sampleRate);
- // AbstractAudioContext's listener
+ // BaseAudioContext's listener
AudioListener* listener();
bool setPanningModel(unsigned); // Returns true on success.
@@ -148,7 +148,7 @@ private:
class PannerNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static PannerNode* create(AbstractAudioContext&, float sampleRate);
+ static PannerNode* create(BaseAudioContext&, float sampleRate);
PannerHandler& pannerHandler() const;
String panningModel() const;
@@ -172,7 +172,7 @@ public:
void setConeOuterGain(double);
private:
- PannerNode(AbstractAudioContext&, float sampleRate);
+ PannerNode(BaseAudioContext&, float sampleRate);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698