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

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

Issue 2584703002: Media Session API: make MediaMetadata mutable. (Closed)
Patch Set: review comments and tests Created 4 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: 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 c59f1118c190c732f7fe099ede602f00827dec0f..996a9b4580387185bfbb24ac62f95297f13717c4 100644
--- a/third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl
+++ b/third_party/WebKit/Source/modules/mediasession/MediaMetadata.idl
@@ -9,8 +9,8 @@
Constructor(MediaMetadataInit metadata),
RuntimeEnabled=MediaSession,
] interface MediaMetadata {
- readonly attribute DOMString title;
- readonly attribute DOMString artist;
- readonly attribute DOMString album;
- readonly attribute FrozenArray<MediaImage> artwork;
+ attribute DOMString title;
+ attribute DOMString artist;
+ attribute DOMString album;
+ attribute FrozenArray<MediaImage> artwork;
};

Powered by Google App Engine
This is Rietveld 408576698