| Index: content/public/common/media_metadata.cc
|
| diff --git a/content/public/common/media_metadata.cc b/content/public/common/media_metadata.cc
|
| index 32b353a599318fa5fd98cf89a62ab53625368fc2..5a34d74a95f9aa89b51ec74dfb6807d6f5ed62c5 100644
|
| --- a/content/public/common/media_metadata.cc
|
| +++ b/content/public/common/media_metadata.cc
|
| @@ -9,6 +9,17 @@
|
|
|
| namespace content {
|
|
|
| +MediaMetadata::MediaImage::MediaImage() = default;
|
| +
|
| +MediaMetadata::MediaImage::MediaImage(const MediaImage& other) = default;
|
| +
|
| +MediaMetadata::MediaImage::~MediaImage() = default;
|
| +
|
| +bool MediaMetadata::MediaImage::operator==(
|
| + const MediaMetadata::MediaImage& other) const {
|
| + return src == other.src && type == other.type && sizes == other.sizes;
|
| +}
|
| +
|
| MediaMetadata::MediaMetadata() = default;
|
|
|
| MediaMetadata::~MediaMetadata() = default;
|
|
|