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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.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/AudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
index a25e598b53617a89d01aa2b0466ae65ea470a49e..2ecd418b04ea060e2ad328b709e6d4522ded12b7 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioDestinationNode.h
@@ -34,7 +34,7 @@
namespace blink {
class AudioBus;
-class AbstractAudioContext;
+class BaseAudioContext;
class AudioDestinationHandler : public AudioHandler, public AudioIOCallback {
public:
@@ -99,7 +99,7 @@ public:
unsigned long maxChannelCount() const;
protected:
- AudioDestinationNode(AbstractAudioContext&);
+ AudioDestinationNode(BaseAudioContext&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698