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

Unified Diff: third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.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/DefaultAudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
index 9b6a8d29591d92ba1a25ea82b308fe4c16746d6b..f99074172c04ba4f538f87e7583c8ff3b4ab8110 100644
--- a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.h
@@ -31,7 +31,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
class DefaultAudioDestinationHandler final : public AudioDestinationHandler {
@@ -61,10 +61,10 @@ private:
class DefaultAudioDestinationNode final : public AudioDestinationNode {
public:
- static DefaultAudioDestinationNode* create(AbstractAudioContext*);
+ static DefaultAudioDestinationNode* create(BaseAudioContext*);
private:
- explicit DefaultAudioDestinationNode(AbstractAudioContext&);
+ explicit DefaultAudioDestinationNode(BaseAudioContext&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698