OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/notifications/notification_platform_bridge_mac.h" | 5 #include "chrome/browser/notifications/notification_platform_bridge_mac.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 #if BUILDFLAG(ENABLE_XPC_NOTIFICATIONS) | 266 #if BUILDFLAG(ENABLE_XPC_NOTIFICATIONS) |
267 // If no banner existed with that ID try to see if there is an alert | 267 // If no banner existed with that ID try to see if there is an alert |
268 // in the xpc server. | 268 // in the xpc server. |
269 if (!notification_removed) { | 269 if (!notification_removed) { |
270 [alert_dispatcher_ closeNotificationWithId:candidate_id | 270 [alert_dispatcher_ closeNotificationWithId:candidate_id |
271 withProfileId:current_profile_id]; | 271 withProfileId:current_profile_id]; |
272 } | 272 } |
273 #endif // ENABLE_XPC_NOTIFICATIONS | 273 #endif // ENABLE_XPC_NOTIFICATIONS |
274 } | 274 } |
275 | 275 |
276 bool NotificationPlatformBridgeMac::GetDisplayed( | 276 void NotificationPlatformBridgeMac::GetDisplayed( |
277 const std::string& profile_id, | 277 const std::string& profile_id, |
278 bool incognito, | 278 bool incognito, |
279 std::set<std::string>* notifications) const { | 279 const NotificationResultCallback& callback) const { |
280 DCHECK(notifications); | 280 std::unique_ptr<std::set<std::string>> displayed_notifications = |
281 | 281 base::MakeUnique<std::set<std::string>>(); |
282 NSString* current_profile_id = base::SysUTF8ToNSString(profile_id); | 282 NSString* current_profile_id = base::SysUTF8ToNSString(profile_id); |
283 for (NSUserNotification* toast in | 283 for (NSUserNotification* toast in |
284 [notification_center_ deliveredNotifications]) { | 284 [notification_center_ deliveredNotifications]) { |
285 NSString* toast_profile_id = [toast.userInfo | 285 NSString* toast_profile_id = [toast.userInfo |
286 objectForKey:notification_constants::kNotificationProfileId]; | 286 objectForKey:notification_constants::kNotificationProfileId]; |
287 if ([toast_profile_id isEqualToString:current_profile_id]) { | 287 if ([toast_profile_id isEqualToString:current_profile_id]) { |
288 notifications->insert(base::SysNSStringToUTF8([toast.userInfo | 288 displayed_notifications->insert(base::SysNSStringToUTF8([toast.userInfo |
289 objectForKey:notification_constants::kNotificationId])); | 289 objectForKey:notification_constants::kNotificationId])); |
290 } | 290 } |
291 } | 291 } |
292 return true; | 292 content::BrowserThread::PostTask( |
| 293 content::BrowserThread::UI, FROM_HERE, |
| 294 base::Bind(callback, base::Passed(&displayed_notifications), |
| 295 true /* supports sync */)); |
293 } | 296 } |
294 | 297 |
295 // static | 298 // static |
296 void NotificationPlatformBridgeMac::ProcessNotificationResponse( | 299 void NotificationPlatformBridgeMac::ProcessNotificationResponse( |
297 NSDictionary* response) { | 300 NSDictionary* response) { |
298 if (!NotificationPlatformBridgeMac::VerifyNotificationData(response)) | 301 if (!NotificationPlatformBridgeMac::VerifyNotificationData(response)) |
299 return; | 302 return; |
300 | 303 |
301 NSNumber* button_index = | 304 NSNumber* button_index = |
302 [response objectForKey:notification_constants::kNotificationButtonIndex]; | 305 [response objectForKey:notification_constants::kNotificationButtonIndex]; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 [[xpcConnection_ remoteObjectProxy] closeAllNotifications]; | 480 [[xpcConnection_ remoteObjectProxy] closeAllNotifications]; |
478 } | 481 } |
479 | 482 |
480 // NotificationReply implementation | 483 // NotificationReply implementation |
481 - (void)notificationClick:(NSDictionary*)notificationResponseData { | 484 - (void)notificationClick:(NSDictionary*)notificationResponseData { |
482 NotificationPlatformBridgeMac::ProcessNotificationResponse( | 485 NotificationPlatformBridgeMac::ProcessNotificationResponse( |
483 notificationResponseData); | 486 notificationResponseData); |
484 } | 487 } |
485 | 488 |
486 @end | 489 @end |
OLD | NEW |