| 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() {
|
| }
|
|
|
|
|