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

Unified Diff: third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp

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.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
index a6fc98218628ce1bcaffe083212e6af20df18e90..280a5a5827782e408ebd643bfaa6cf48deef0cd8 100644
--- a/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/DefaultAudioDestinationNode.cpp
@@ -26,7 +26,7 @@
#include "bindings/core/v8/ExceptionMessages.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
-#include "modules/webaudio/AbstractAudioContext.h"
+#include "modules/webaudio/BaseAudioContext.h"
#include "platform/Logging.h"
namespace blink {
@@ -138,13 +138,13 @@ void DefaultAudioDestinationHandler::setChannelCount(unsigned long channelCount,
// ----------------------------------------------------------------
-DefaultAudioDestinationNode::DefaultAudioDestinationNode(AbstractAudioContext& context)
+DefaultAudioDestinationNode::DefaultAudioDestinationNode(BaseAudioContext& context)
: AudioDestinationNode(context)
{
setHandler(DefaultAudioDestinationHandler::create(*this));
}
-DefaultAudioDestinationNode* DefaultAudioDestinationNode::create(AbstractAudioContext* context)
+DefaultAudioDestinationNode* DefaultAudioDestinationNode::create(BaseAudioContext* context)
{
return new DefaultAudioDestinationNode(*context);
}

Powered by Google App Engine
This is Rietveld 408576698