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

Unified Diff: third_party/WebKit/Source/modules/webaudio/StereoPannerNode.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/StereoPannerNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
index 4837c43fec34edb4c011b29565c98267c4d71f73..c450d47625b7cc27a104ab1749473f4c512e3349 100644
--- a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h
@@ -14,7 +14,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
// StereoPannerNode is an AudioNode with one input and one output. It is
// specifically designed for equal-power stereo panning.
@@ -43,13 +43,13 @@ private:
class StereoPannerNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static StereoPannerNode* create(AbstractAudioContext&, ExceptionState&);
+ static StereoPannerNode* create(BaseAudioContext&, ExceptionState&);
DECLARE_VIRTUAL_TRACE();
AudioParam* pan() const;
private:
- StereoPannerNode(AbstractAudioContext&);
+ StereoPannerNode(BaseAudioContext&);
Member<AudioParam> m_pan;
};

Powered by Google App Engine
This is Rietveld 408576698