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

Unified Diff: chrome/browser/ui/cocoa/notifications/alert_notification_service.mm

Issue 2709213005: [Mac] Add XPC alerts to GetDisplayedNotifications (Closed)
Patch Set: review Created 3 years, 8 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/alert_notification_service.mm
diff --git a/chrome/browser/ui/cocoa/notifications/alert_notification_service.mm b/chrome/browser/ui/cocoa/notifications/alert_notification_service.mm
index 488006a8abd12f197404953645df20371690619e..39e679270cac5c22c050d97ce4e5a29d5cd114db 100644
--- a/chrome/browser/ui/cocoa/notifications/alert_notification_service.mm
+++ b/chrome/browser/ui/cocoa/notifications/alert_notification_service.mm
@@ -113,4 +113,27 @@ crashpad::SimpleStringDictionary* GetCrashpadAnnotations() {
[transactionHandler_ closeTransactionIfNeeded];
}
+- (void)getDisplayedAlertsForProfileId:(NSString*)profileId
+ andIncognito:(BOOL)incognito
+ withReply:(void (^)(NSArray*))reply {
+ NSUserNotificationCenter* notificationCenter =
+ [NSUserNotificationCenter defaultUserNotificationCenter];
+ NSMutableArray* notificationIds = [NSMutableArray
+ arrayWithCapacity:[[notificationCenter deliveredNotifications] count]];
+ for (NSUserNotification* toast in
+ [notificationCenter deliveredNotifications]) {
+ NSString* candidateProfileId = [toast.userInfo
+ objectForKey:notification_constants::kNotificationProfileId];
+ BOOL incognitoNotification = [[toast.userInfo
+ objectForKey:notification_constants::kNotificationIncognito] boolValue];
+ if ([candidateProfileId isEqualToString:profileId] &&
+ incognito == incognitoNotification) {
+ [notificationIds
+ addObject:[toast.userInfo
+ objectForKey:notification_constants::kNotificationId]];
+ }
+ }
+ reply(notificationIds);
+}
+
@end

Powered by Google App Engine
This is Rietveld 408576698