summaryrefslogtreecommitdiffstats
path: root/chromium/services/media_session/public/cpp/media_metadata.cc
blob: 42ed11b67fd243c4cc3dc10303c2d0b949be7385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/media_session/public/cpp/media_metadata.h"

#include <algorithm>
#include <iterator>

namespace media_session {

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;

MediaMetadata::MediaMetadata(const MediaMetadata& other) = default;

bool MediaMetadata::operator==(const MediaMetadata& other) const {
  return title == other.title && artist == other.artist &&
         album == other.album && artwork == other.artwork &&
         source_title == other.source_title;
}

bool MediaMetadata::operator!=(const MediaMetadata& other) const {
  return !(*this == other);
}

bool MediaMetadata::IsEmpty() const {
  return title.empty() && artist.empty() && album.empty() &&
         source_title.empty() && artwork.empty();
}

}  // namespace media_session