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

Side by Side Diff: content/public/common/media_metadata.cc

Issue 2015433003: Implement MediaMetadata artwork in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed lint issues Created 4 years, 5 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 unified diff | Download patch
OLDNEW
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 #include <algorithm>
8 #include <iterator>
9
7 namespace content { 10 namespace content {
8 11
9 const size_t MediaMetadata::kMaxIPCStringLength = 4 * 1024;
10
11 MediaMetadata::MediaMetadata() = default; 12 MediaMetadata::MediaMetadata() = default;
12 13
13 MediaMetadata::~MediaMetadata() = default; 14 MediaMetadata::~MediaMetadata() = default;
14 15
16 MediaMetadata::MediaMetadata(const MediaMetadata& other) = default;
17
15 bool MediaMetadata::operator==(const MediaMetadata& other) const { 18 bool MediaMetadata::operator==(const MediaMetadata& other) const {
16 return title == other.title && artist == other.artist && album == other.album; 19 return title == other.title && artist == other.artist &&
20 album == other.album && artwork == other.artwork;
17 } 21 }
18 22
19 bool MediaMetadata::operator!=(const MediaMetadata& other) const { 23 bool MediaMetadata::operator!=(const MediaMetadata& other) const {
20 return !this->operator==(other); 24 return !this->operator==(other);
21 } 25 }
22 26
23 } // namespace content 27 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698