2015-12-25 02:16:07 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/notification.h"
|
2015-12-25 02:16:07 +00:00
|
|
|
|
2017-05-18 22:58:12 +00:00
|
|
|
#include "brightray/browser/notification_delegate.h"
|
|
|
|
#include "brightray/browser/notification_presenter.h"
|
2015-12-25 02:16:07 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2018-04-17 23:37:22 +00:00
|
|
|
NotificationOptions::NotificationOptions() = default;
|
|
|
|
NotificationOptions::~NotificationOptions() = default;
|
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
Notification::Notification(NotificationDelegate* delegate,
|
|
|
|
NotificationPresenter* presenter)
|
2018-04-18 01:56:12 +00:00
|
|
|
: delegate_(delegate), presenter_(presenter), weak_factory_(this) {}
|
2015-12-25 02:16:07 +00:00
|
|
|
|
|
|
|
Notification::~Notification() {
|
2017-05-30 09:06:51 +00:00
|
|
|
if (delegate())
|
|
|
|
delegate()->NotificationDestroyed();
|
|
|
|
}
|
|
|
|
|
2016-04-15 07:14:13 +00:00
|
|
|
void Notification::NotificationClicked() {
|
2017-05-30 09:06:51 +00:00
|
|
|
if (delegate())
|
|
|
|
delegate()->NotificationClick();
|
2016-04-15 07:14:13 +00:00
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notification::NotificationDismissed() {
|
2017-05-30 09:06:51 +00:00
|
|
|
if (delegate())
|
|
|
|
delegate()->NotificationClosed();
|
2016-04-15 07:14:13 +00:00
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notification::NotificationFailed() {
|
2017-05-30 09:06:51 +00:00
|
|
|
if (delegate())
|
|
|
|
delegate()->NotificationFailed();
|
2016-04-15 07:14:13 +00:00
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
2015-12-25 02:16:07 +00:00
|
|
|
void Notification::Destroy() {
|
|
|
|
presenter()->RemoveNotification(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace brightray
|