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

Unified Diff: third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h

Issue 2092033003: Add OfflineAudioDestinationNode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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 6eb2259f6e5b8920d4ea5335eec0198d2e711c68..659da125fa3ed0976d027d85fa86fa15811769fa 100644
--- a/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/OfflineAudioDestinationNode.h
@@ -60,6 +60,9 @@ public:
size_t renderQuantumFrames() const { return renderQuantumSize; }
+ void setChannelCount(unsigned long, ExceptionState&) final;
+ void setChannelCountMode(const String&, ExceptionState&) final;
+
WebThread* offlineRenderThread();
private:
@@ -116,6 +119,7 @@ private:
};
class OfflineAudioDestinationNode final : public AudioDestinationNode {
+ DEFINE_WRAPPERTYPEINFO();
public:
static OfflineAudioDestinationNode* create(BaseAudioContext*, AudioBuffer* renderTarget);

Powered by Google App Engine
This is Rietveld 408576698