Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: chrome/browser/ui/cocoa/notifications/notification_delivery.h

Issue 2748903003: [Mac] Use Crashpad in the AlertNotificationService.xpc. (Closed)
Patch Set: Comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/notifications/notification_delivery.h
diff --git a/chrome/browser/ui/cocoa/notifications/notification_delivery.h b/chrome/browser/ui/cocoa/notifications/notification_delivery.h
index 8670956d10b7a711b3af3437324eddeb435aec46..b575bb3813b9ab3da4b251b1d3f5c574fa5e1fbc 100644
--- a/chrome/browser/ui/cocoa/notifications/notification_delivery.h
+++ b/chrome/browser/ui/cocoa/notifications/notification_delivery.h
@@ -7,12 +7,17 @@
#import <Foundation/Foundation.h>
+#import "chrome/browser/ui/cocoa/notifications/xpc_mach_port.h"
+
// Collection of protocols used for XPC communication between chrome
// and the alert notification xpc service.
// Protocol for the XPC notification service.
@protocol NotificationDelivery
+// Sets the Mach exception handler port to use for the XPCService.
+- (void)setMachExceptionPort:(CrXPCMachPort*)port;
+
// |notificationData| is generated using a NofiticationBuilder object.
- (void)deliverNotification:(NSDictionary*)notificationData;
@@ -22,6 +27,7 @@
// Closes all the alerts being displayed.
- (void)closeAllNotifications;
+
@end
// Response protocol for the XPC notification service to notify Chrome of

Powered by Google App Engine
This is Rietveld 408576698