| Index: chrome/browser/notifications/notification.cc
|
| diff --git a/chrome/browser/notifications/notification.cc b/chrome/browser/notifications/notification.cc
|
| index 1bd24964b3a866b642b6a3a134b9fb8eeb0c1fe1..5d2be7e662b47d4849935bf87b8a061ad0698b4e 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() {}
|
|
|