Implement Notification.close()

This commit is contained in:
Adam Roben 2013-03-29 09:36:07 -04:00
parent dde3c3f78f
commit 080d9f59e9
5 changed files with 70 additions and 4 deletions

View file

@ -17,6 +17,10 @@ class NotificationPresenter {
const content::ShowDesktopNotificationHostMsgParams&,
int render_process_id,
int render_view_id) = 0;
virtual void CancelNotification(
int render_process_id,
int render_view_id,
int notification_id) = 0;
};
}