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

Unified Diff: content/public/common/manifest.cc

Issue 2015433003: Implement MediaMetadata artwork in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed dcheng's comments 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/manifest.cc
diff --git a/content/public/common/manifest.cc b/content/public/common/manifest.cc
index cde3498f1b83aa90ace4c55f9c0be7258af7a33f..8e09aad2e71ea9aa86f681d7df267f2dbbddb09c 100644
--- a/content/public/common/manifest.cc
+++ b/content/public/common/manifest.cc
@@ -21,6 +21,10 @@ Manifest::Icon::Icon(const Icon& other) = default;
Manifest::Icon::~Icon() {
}
+bool Manifest::Icon::operator==(const Manifest::Icon& other) const {
+ return src == other.src && type == other.type && sizes == other.sizes;
+}
+
Manifest::RelatedApplication::RelatedApplication() {
}

Powered by Google App Engine
This is Rietveld 408576698