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

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

Issue 1006963003: AudioContext.decodeAudioData returns a Promise (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update for review 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
« no previous file with comments | « Source/modules/webaudio/AsyncAudioDecoder.cpp ('k') | Source/modules/webaudio/AudioBufferCallback.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioBufferCallback.h
diff --git a/Source/modules/webaudio/AudioBufferCallback.h b/Source/modules/webaudio/AudioBufferCallback.h
index 1473cad0c12ef918e8a60002a4798f86f496975a..d0fa6e975a40448369499d4fea3be1a2d4b5431a 100644
--- a/Source/modules/webaudio/AudioBufferCallback.h
+++ b/Source/modules/webaudio/AudioBufferCallback.h
@@ -32,12 +32,14 @@
namespace blink {
class AudioBuffer;
+class DOMException;
class AudioBufferCallback : public GarbageCollectedFinalized<AudioBufferCallback> {
public:
virtual ~AudioBufferCallback() { }
DEFINE_INLINE_VIRTUAL_TRACE() { }
virtual void handleEvent(AudioBuffer*) = 0;
+ virtual void handleEvent(DOMException*) = 0;
};
} // namespace
« no previous file with comments | « Source/modules/webaudio/AsyncAudioDecoder.cpp ('k') | Source/modules/webaudio/AudioBufferCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698