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

Unified Diff: third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl

Issue 2013813002: Implement MediaMetadata artwork in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 6 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/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..06517dd84acd615a1e77e6f065f2c98421702b96 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 FrozenArray<MediaArtwork> artwork;
};

Powered by Google App Engine
This is Rietveld 408576698