OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/common/media_metadata.h" | 5 #include "content/public/common/media_metadata.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 const size_t MediaMetadata::kMaxIPCStringLength = 4 * 1024; | 9 const size_t MediaMetadata::kMaxIPCStringLength = 4 * 1024; |
10 | 10 |
11 MediaMetadata::MediaMetadata() = default; | 11 MediaMetadata::MediaMetadata() = default; |
12 | 12 |
13 MediaMetadata::~MediaMetadata() = default; | 13 MediaMetadata::~MediaMetadata() = default; |
14 | 14 |
15 bool MediaMetadata::operator==(const MediaMetadata& other) const { | 15 bool MediaMetadata::operator==(const MediaMetadata& other) const { |
16 return title == other.title && artist == other.artist && album == other.album; | 16 // TODO(zqzhang): compare the icons. |
| 17 return title == other.title && artist == other.artist && |
| 18 album == other.album; |
17 } | 19 } |
18 | 20 |
19 bool MediaMetadata::operator!=(const MediaMetadata& other) const { | 21 bool MediaMetadata::operator!=(const MediaMetadata& other) const { |
20 return !this->operator==(other); | 22 return !this->operator==(other); |
21 } | 23 } |
22 | 24 |
23 } // namespace content | 25 } // namespace content |
OLD | NEW |