| Index: content/public/common/manifest.cc
|
| diff --git a/content/public/common/manifest.cc b/content/public/common/manifest.cc
|
| index 86a6d41d4c3a44a441772eac8a0e7ce6360f13f8..37f232443be72262631c4ebbe182616fc616dd95 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() {
|
| }
|
|
|
|
|