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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.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/OfflineAudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
index b900a92ed358678b704d997221528f40d3a3a8aa..0992e35db645835561d9533a48e7e5028ac750af 100644
--- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
@@ -34,7 +34,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class AudioBus;
class OfflineAudioContext;
@@ -115,10 +115,10 @@ private:
class OfflineAudioDestinationNode final : public AudioDestinationNode {
public:
- static OfflineAudioDestinationNode* create(AbstractAudioContext*, AudioBuffer* renderTarget);
+ static OfflineAudioDestinationNode* create(BaseAudioContext*, AudioBuffer* renderTarget);
private:
- OfflineAudioDestinationNode(AbstractAudioContext&, AudioBuffer* renderTarget);
+ OfflineAudioDestinationNode(BaseAudioContext&, AudioBuffer* renderTarget);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698