| Index: chrome/browser/ui/cocoa/notifications/notification_service_delegate.mm
|
| diff --git a/chrome/browser/ui/cocoa/notifications/notification_service_delegate.mm b/chrome/browser/ui/cocoa/notifications/notification_service_delegate.mm
|
| index 78118dd48ea9bd6f9f47fbd89acbb239ca57f762..19c03e8680a839fe19b7131c6e6753f2cb9907c6 100644
|
| --- a/chrome/browser/ui/cocoa/notifications/notification_service_delegate.mm
|
| +++ b/chrome/browser/ui/cocoa/notifications/notification_service_delegate.mm
|
| @@ -9,6 +9,7 @@
|
| #include "base/mac/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/notifications/alert_notification_service.h"
|
| #import "chrome/browser/ui/cocoa/notifications/notification_delivery.h"
|
| +#import "chrome/browser/ui/cocoa/notifications/notification_private_mac.h"
|
| #import "chrome/browser/ui/cocoa/notifications/notification_response_builder_mac.h"
|
|
|
| @class NSUserNotificationCenter;
|
| @@ -60,4 +61,12 @@
|
| [[connection_ remoteObjectProxy] notificationClick:response];
|
| }
|
|
|
| +// NSUserNotificationCenter private.
|
| +- (void)userNotificationCenter:(NSUserNotificationCenter*)center
|
| + didDismissAlert:(NSUserNotification*)notification {
|
| + NSDictionary* response =
|
| + [NotificationResponseBuilder buildDictionary:notification];
|
| + [[connection_ remoteObjectProxy] notificationClick:response];
|
| +}
|
| +
|
| @end
|
|
|