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

Unified Diff: third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h

Issue 2013813002: Implement MediaMetadata artwork in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed the copy of WebMediaMetadata from MediaMetadata 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/public/platform/modules/mediasession/WebMediaMetadata.h
diff --git a/third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h b/third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h
index 6c0efcee6afd06490a5fa1cea20b5ffe78c0202f..9ef9e3000c59f7b4bb4eef8edd47896cc78cee16 100644
--- a/third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h
+++ b/third_party/WebKit/public/platform/modules/mediasession/WebMediaMetadata.h
@@ -6,6 +6,8 @@
#define WebMediaMetadata_h
#include "public/platform/WebString.h"
+#include "public/platform/WebVector.h"
+#include "public/platform/modules/mediasession/WebMediaArtwork.h"
namespace blink {
@@ -14,6 +16,7 @@ struct WebMediaMetadata {
WebString title;
WebString artist;
WebString album;
+ WebVector<WebMediaArtwork> artworks;
mlamouri (slow - plz ping) 2016/06/08 13:06:18 nit: rename to `artwork` following the spec change
Zhiqiang Zhang (Slow) 2016/06/09 15:30:13 Done.
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698