Add more guards around null notification

This commit is contained in:
Kevin Sawicki 2016-10-28 10:54:55 -07:00
parent ee4442f964
commit 0a5f7171d4
2 changed files with 9 additions and 7 deletions

View file

@ -57,8 +57,9 @@ void CocoaNotification::Show(const base::string16& title,
} }
void CocoaNotification::Dismiss() { void CocoaNotification::Dismiss() {
[NSUserNotificationCenter.defaultUserNotificationCenter if (notification_)
removeDeliveredNotification:notification_]; [NSUserNotificationCenter.defaultUserNotificationCenter
removeDeliveredNotification:notification_];
NotificationDismissed(); NotificationDismissed();
} }

View file

@ -26,12 +26,13 @@ void OnWebNotificationAllowed(base::WeakPtr<Notification> notification,
const content::PlatformNotificationData& data, const content::PlatformNotificationData& data,
bool audio_muted, bool audio_muted,
bool allowed) { bool allowed) {
if (!allowed) { if (!notification)
notification->Destroy();
return; return;
} if (allowed)
notification->Show(data.title, data.body, data.tag, data.icon, icon, notification->Show(data.title, data.body, data.tag, data.icon, icon,
audio_muted ? true : data.silent); audio_muted ? true : data.silent);
else
notification->Destroy();
} }
} // namespace } // namespace