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

Unified Diff: chrome/browser/notifications/alert_dispatcher_mac.h

Issue 2709213005: [Mac] Add XPC alerts to GetDisplayedNotifications (Closed)
Patch Set: Rebase after making the whole flow async in a different patch 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/notifications/alert_dispatcher_mac.h
diff --git a/chrome/browser/notifications/alert_dispatcher_mac.h b/chrome/browser/notifications/alert_dispatcher_mac.h
index ee2744c29e183d68a1c4ee6e462dbfa76bed14fd..f6f5ccc6f313dbc030b81e9c63c45040bf697544 100644
--- a/chrome/browser/notifications/alert_dispatcher_mac.h
+++ b/chrome/browser/notifications/alert_dispatcher_mac.h
@@ -1,3 +1,4 @@
+
Peter Beverloo 2017/04/03 12:33:28 revert
Miguel Garcia 2017/04/04 12:21:26 Done.
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -7,6 +8,15 @@
#import <Foundation/Foundation.h>
+#include "base/callback_forward.h"
+
+namespace {
+
+using DisplayedNotificationsCallback =
Robert Sesek 2017/04/03 16:51:24 Why isn't this using NotificationDisplayService::D
Miguel Garcia 2017/04/04 12:21:26 Do you think it's worth including the display_serv
Robert Sesek 2017/04/04 15:31:48 The supports_synchronization parameter is complete
+ base::Callback<void(std::unique_ptr<std::set<std::string>>,
+ bool /* supports_synchronization */)>;
+} // namespace
Peter Beverloo 2017/04/03 12:33:28 We shouldn't use anonymous namespaces in header fi
Miguel Garcia 2017/04/04 12:21:26 I went with inlining (which is a pity since I need
Robert Sesek 2017/04/04 15:31:48 Why can't you just declare this in the header with
+
// Interface to communicate with the Alert XPC service.
@protocol AlertDispatcher<NSObject>
@@ -20,6 +30,11 @@
// Close all notifications.
- (void)closeAllNotifications;
+// Get currently displayed notifications.
+- (void)getDisplayedAlertsForProfileId:(NSString*)profileId
+ withNotificationCenter:
+ (NSUserNotificationCenter*)notificationCenter
+ callback:(DisplayedNotificationsCallback)callback;
@end
#endif // CHROME_BROWSER_NOTIFICATIONS_ALERT_DISPATCHER_MAC_H_

Powered by Google App Engine
This is Rietveld 408576698