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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioBufferSourceNode.idl

Issue 1593763002: Keep AudioSourceNode from premature GC with ScriptWrappable::hasPendingActivity() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify changes (-AbstractAudioContext) Created 4 years, 10 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/AudioBufferSourceNode.idl
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioBufferSourceNode.idl b/third_party/WebKit/Source/modules/webaudio/AudioBufferSourceNode.idl
index 3daec8c17a3862555db48fcbbb59d1f2a4f8b0fd..eea7f7a69bbea0d63328e81644ddc4f97fea0660 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioBufferSourceNode.idl
+++ b/third_party/WebKit/Source/modules/webaudio/AudioBufferSourceNode.idl
@@ -33,8 +33,8 @@ interface AudioBufferSourceNode : AudioSourceNode {
attribute double loopStart;
attribute double loopEnd;
- [RaisesException] void start(optional double when, optional double grainOffset, optional double grainDuration);
- [RaisesException] void stop(optional double when);
+ [RaisesException, ImplementedAs=startNode] void start(optional double when, optional double grainOffset, optional double grainDuration);
+ [RaisesException, ImplementedAs=stopNode] void stop(optional double when);
Raymond Toy 2016/02/22 17:43:51 Why are these methods renamed?
hongchan 2016/02/23 18:01:33 Oh, I will fix this, but it was because ActiveDOMO
attribute EventHandler onended;
};

Powered by Google App Engine
This is Rietveld 408576698