21 lines
673 B
C++
21 lines
673 B
C++
|
#include "atom/browser/ui/notification_delegate_adapter.h"
|
||
|
|
||
|
#include "atom/browser/api/atom_api_notification.h"
|
||
|
#include "browser/notification_delegate.h"
|
||
|
|
||
|
namespace atom {
|
||
|
|
||
|
AtomNotificationDelegateAdapter::AtomNotificationDelegateAdapter(atom::api::Notification* target) {
|
||
|
observer_ = target;
|
||
|
}
|
||
|
void AtomNotificationDelegateAdapter::NotificationDisplayed() {
|
||
|
observer_->OnShown();
|
||
|
}
|
||
|
void AtomNotificationDelegateAdapter::NotificationClosed() {}
|
||
|
void AtomNotificationDelegateAdapter::NotificationClick() {
|
||
|
observer_->OnClicked();
|
||
|
}
|
||
|
void AtomNotificationDelegateAdapter::NotificationDestroyed() {}
|
||
|
void AtomNotificationDelegateAdapter::NotificationFailed() {}
|
||
|
|
||
|
}
|