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

Unified Diff: Source/core/html/track/TrackEvent.idl

Issue 790973002: Use event init dictionary in core/html/track (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@union-includes
Patch Set: Created 6 years 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/core/html/track/TrackEvent.idl
diff --git a/Source/core/html/track/TrackEvent.idl b/Source/core/html/track/TrackEvent.idl
index 22d7ece8acb60b8b31c522cf92a345a0f9baf1c7..29066ef8178fda7731e77df78e5e9ffda48039e2 100644
--- a/Source/core/html/track/TrackEvent.idl
+++ b/Source/core/html/track/TrackEvent.idl
@@ -26,7 +26,7 @@
// https://html.spec.whatwg.org/multipage/embedded-content.html#the-trackevent-interface
[
- EventConstructor,
+ Constructor(DOMString type, optional TrackEventInit eventInitDict),
] interface TrackEvent : Event {
- [InitializedByEventConstructor] readonly attribute (VideoTrack or AudioTrack or TextTrack)? track;
+ readonly attribute (VideoTrack or AudioTrack or TextTrack)? track;
};

Powered by Google App Engine
This is Rietveld 408576698