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

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

Issue 2103043007: Rename AbstractAudioContext to BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use ASSERT(isGraphOwner()) instead of DCHECK Created 4 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
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 ca5fde46e5cfb4536fa281d4e15bd092d9e2ce37..3eda63ef1cec4b7e32870831753f607764d9796b 100644
--- a/third_party/WebKit/Source/modules/webaudio/PannerNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
@@ -38,7 +38,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.
@@ -123,7 +123,7 @@ private:
AudioParamHandler& orientationY,
AudioParamHandler& orientationZ);
- // AbstractAudioContext's listener
+ // BaseAudioContext's listener
AudioListener* listener();
bool setPanningModel(unsigned); // Returns true on success.
@@ -207,7 +207,7 @@ private:
class PannerNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static PannerNode* create(AbstractAudioContext&, ExceptionState&);
+ static PannerNode* create(BaseAudioContext&, ExceptionState&);
PannerHandler& pannerHandler() const;
DECLARE_VIRTUAL_TRACE();
@@ -242,7 +242,7 @@ public:
void setConeOuterGain(double);
private:
- PannerNode(AbstractAudioContext&);
+ PannerNode(BaseAudioContext&);
Member<AudioParam> m_positionX;
Member<AudioParam> m_positionY;

Powered by Google App Engine
This is Rietveld 408576698