Chromium Code Reviews| 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 #include <algorithm> | |
| 8 | |
| 7 namespace content { | 9 namespace content { |
| 8 | 10 |
| 9 const size_t MediaMetadata::kMaxIPCStringLength = 4 * 1024; | 11 const size_t MediaMetadata::kMaxIPCStringLength = 4 * 1024; |
| 12 const int MediaMetadata::kMaxIconSize = 4 * 1024; | |
| 13 const size_t MediaMetadata::kMaxArtworkTypeLength = 2 * 127 + 1; | |
| 10 | 14 |
| 11 MediaMetadata::MediaMetadata() = default; | 15 MediaMetadata::MediaMetadata() = default; |
| 12 | 16 |
| 13 MediaMetadata::~MediaMetadata() = default; | 17 MediaMetadata::~MediaMetadata() = default; |
| 14 | 18 |
| 15 bool MediaMetadata::operator==(const MediaMetadata& other) const { | 19 bool MediaMetadata::operator==(const MediaMetadata& other) const { |
| 16 return title == other.title && artist == other.artist && album == other.album; | 20 return title == other.title && artist == other.artist && |
| 21 album == other.album && artwork == other.artwork; | |
| 17 } | 22 } |
| 18 | 23 |
| 19 bool MediaMetadata::operator!=(const MediaMetadata& other) const { | 24 bool MediaMetadata::operator!=(const MediaMetadata& other) const { |
| 20 return !this->operator==(other); | 25 return !this->operator==(other); |
| 21 } | 26 } |
| 22 | 27 |
| 28 base::Optional<MediaMetadata::Artwork> MediaMetadata::SanitizeArtwork( | |
| 29 const MediaMetadata::Artwork& artwork) { | |
| 30 if (!artwork.src.is_valid() || !artwork.src.IsStandard() || | |
| 31 (!artwork.src.SchemeIsHTTPOrHTTPS() && | |
| 32 !artwork.src.SchemeIsFile())) { | |
| 33 return base::nullopt; | |
| 34 } | |
| 35 Artwork sanitized_artwork; | |
| 36 sanitized_artwork.src = artwork.src; | |
| 37 sanitized_artwork.type = artwork.type.is_null() ? | |
| 38 base::NullableString16() : | |
| 39 base::NullableString16( | |
| 40 artwork.type.string().substr(0, kMaxArtworkTypeLength), | |
| 41 false); | |
| 42 std::copy_if(artwork.sizes.begin(), artwork.sizes.end(), | |
| 43 sanitized_artwork.sizes.begin(), | |
| 44 [](const gfx::Size& size) { | |
| 45 return size.width() >= 0 && size.width() <= kMaxIconSize && | |
| 46 size.height() >= 0 && size.height() <= kMaxIconSize; }); | |
|
mlamouri (slow - plz ping)
2016/06/21 13:19:46
palmer@ why do we need to check this? The sizes he
| |
| 47 return sanitized_artwork; | |
| 48 } | |
| 49 | |
| 23 } // namespace content | 50 } // namespace content |
| OLD | NEW |