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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioSourceNode.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/AudioSourceNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioSourceNode.h b/third_party/WebKit/Source/modules/webaudio/AudioSourceNode.h
index e0c9f39ded568460ea9a3b239a32bc9153f63e38..166285057006a88e3d75a8dd8c892ed81f5406ab 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioSourceNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioSourceNode.h
@@ -33,12 +33,12 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class AudioSourceNode : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- AudioSourceNode(AbstractAudioContext& context)
+ AudioSourceNode(BaseAudioContext& context)
: AudioNode(context) { }
};

Powered by Google App Engine
This is Rietveld 408576698