| Index: chrome/browser/notifications/notification.cc
|
| diff --git a/chrome/browser/notifications/notification.cc b/chrome/browser/notifications/notification.cc
|
| index 1bd24964b3a866b642b6a3a134b9fb8eeb0c1fe1..cec64b27f64e53aa6ef25f7e8d324ae3bb332d14 100644
|
| --- a/chrome/browser/notifications/notification.cc
|
| +++ b/chrome/browser/notifications/notification.cc
|
| @@ -32,12 +32,14 @@ Notification::Notification(const std::string& id,
|
| const Notification& notification)
|
| : message_center::Notification(id, notification),
|
| tag_(notification.tag()),
|
| + service_worker_scope_(notification.service_worker_scope()),
|
| delegate_(notification.delegate()) {
|
| }
|
|
|
| Notification::Notification(const Notification& notification)
|
| : message_center::Notification(notification),
|
| tag_(notification.tag()),
|
| + service_worker_scope_(notification.service_worker_scope()),
|
| delegate_(notification.delegate()) {}
|
|
|
| Notification::~Notification() {}
|
| @@ -45,6 +47,7 @@ Notification::~Notification() {}
|
| Notification& Notification::operator=(const Notification& notification) {
|
| message_center::Notification::operator=(notification);
|
| tag_ = notification.tag();
|
| + service_worker_scope_ = notification.service_worker_scope();
|
| delegate_ = notification.delegate();
|
| return *this;
|
| }
|
|
|