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

Unified Diff: Source/modules/webaudio/OfflineAudioContext.h

Issue 1111213002: Treat a stopped AudioContext as closed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Throw on detached uses of startRendering() also Created 5 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: Source/modules/webaudio/OfflineAudioContext.h
diff --git a/Source/modules/webaudio/OfflineAudioContext.h b/Source/modules/webaudio/OfflineAudioContext.h
index adbf1bd1eed2ceb45c63e079b0addb6e7e8f18fe..27fb365ef749ce6fed8a4681df68497f4e514a56 100644
--- a/Source/modules/webaudio/OfflineAudioContext.h
+++ b/Source/modules/webaudio/OfflineAudioContext.h
@@ -38,7 +38,7 @@ public:
virtual ~OfflineAudioContext();
- ScriptPromise startOfflineRendering(ScriptState*);
+ ScriptPromise startOfflineRendering(ScriptState*, ExceptionState&);
private:
OfflineAudioContext(Document*, unsigned numberOfChannels, size_t numberOfFrames, float sampleRate);
};

Powered by Google App Engine
This is Rietveld 408576698