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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.idl

Issue 2249763003: Mark HTMLMediaElement media tracks functionality as stable Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated platform/RuntimeEnabledFeatures.in Created 4 years, 4 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/core/html/HTMLMediaElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.idl b/third_party/WebKit/Source/core/html/HTMLMediaElement.idl
index 2789e9a20c3b010f7ecca8889d23d143142010ae..fb4d1e2422dfdad7321b9f10a82512908b2e827d 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.idl
@@ -81,8 +81,8 @@ enum CanPlayTypeResult { "" /* empty string */, "maybe", "probably" };
[CEReactions, Reflect=muted] attribute boolean defaultMuted;
// tracks
- [SameObject, RuntimeEnabled=AudioVideoTracks] readonly attribute AudioTrackList audioTracks;
- [SameObject, RuntimeEnabled=AudioVideoTracks] readonly attribute VideoTrackList videoTracks;
+ [SameObject] readonly attribute AudioTrackList audioTracks;
+ [SameObject] readonly attribute VideoTrackList videoTracks;
[SameObject] readonly attribute TextTrackList textTracks;
[RaisesException] TextTrack addTextTrack(TextTrackKind kind, optional DOMString label = "", optional DOMString language = "");

Powered by Google App Engine
This is Rietveld 408576698