Index: third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl |
diff --git a/third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl b/third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl |
index 53e6e86558133e48e29317aaf1895881f257be9d..7f102b12fbcdd80518256108ab7f13c3743da6bd 100644 |
--- a/third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl |
+++ b/third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl |
@@ -5,10 +5,12 @@ |
// https://mediasession.spec.whatwg.org/#the-mediametadata-interface |
[ |
+ ConstructorCallWith=ExecutionContext, |
Constructor(MediaMetadataInit metadata), |
RuntimeEnabled=MediaSession, |
] interface MediaMetadata { |
readonly attribute DOMString title; |
readonly attribute DOMString artist; |
readonly attribute DOMString album; |
+ readonly attribute sequence<MediaArtwork> artworks; |
mlamouri (slow - plz ping)
2016/05/31 16:41:50
I wonder if that should be a FrozenArray<MediaArtw
Zhiqiang Zhang (Slow)
2016/06/01 19:40:57
Done.
|
}; |