| Index: third_party/WebKit/Source/modules/mediasession/MediaMetadata.h
|
| diff --git a/third_party/WebKit/Source/modules/mediasession/MediaMetadata.h b/third_party/WebKit/Source/modules/mediasession/MediaMetadata.h
|
| index 81df4e9913082b3326db48e8d016f0d45d6f1e98..00927feac1af369fe1ea7afb6ab41c1f0fa3d389 100644
|
| --- a/third_party/WebKit/Source/modules/mediasession/MediaMetadata.h
|
| +++ b/third_party/WebKit/Source/modules/mediasession/MediaMetadata.h
|
| @@ -13,7 +13,7 @@
|
| namespace blink {
|
|
|
| class ExecutionContext;
|
| -class MediaArtwork;
|
| +class MediaImage;
|
| class MediaMetadataInit;
|
|
|
| // Implementation of MediaMetadata interface from the Media Session API.
|
| @@ -28,7 +28,7 @@ class MODULES_EXPORT MediaMetadata final
|
| String title() const;
|
| String artist() const;
|
| String album() const;
|
| - const HeapVector<Member<MediaArtwork>>& artwork() const;
|
| + const HeapVector<Member<MediaImage>>& artwork() const;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -38,7 +38,7 @@ class MODULES_EXPORT MediaMetadata final
|
| String m_title;
|
| String m_artist;
|
| String m_album;
|
| - HeapVector<Member<MediaArtwork>> m_artwork;
|
| + HeapVector<Member<MediaImage>> m_artwork;
|
| };
|
|
|
| } // namespace blink
|
|
|