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

Unified Diff: content/browser/notifications/platform_notification_context_impl.cc

Issue 2714743002: Retrive displayed notifications asynchronously
Patch Set: apply review comments from https://codereview.chromium.org/2709213005/ Created 3 years, 10 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: content/browser/notifications/platform_notification_context_impl.cc
diff --git a/content/browser/notifications/platform_notification_context_impl.cc b/content/browser/notifications/platform_notification_context_impl.cc
index b2b372fadc86a15294efc4bb012e3bd7ceef2c06..bc3d4369626374e80f39311bbb9947af72e7ed9f 100644
--- a/content/browser/notifications/platform_notification_context_impl.cc
+++ b/content/browser/notifications/platform_notification_context_impl.cc
@@ -219,18 +219,15 @@ void PlatformNotificationContextImpl::
return;
}
- std::set<std::string>* notification_ids_ptr = notification_ids.get();
-
- BrowserThread::PostTaskAndReplyWithResult(
+ BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
- base::Bind(&PlatformNotificationService::GetDisplayedNotifications,
- base::Unretained(service), browser_context_,
- notification_ids_ptr),
base::Bind(
- &PlatformNotificationContextImpl::
- SynchronizeDisplayedNotificationsForServiceWorkerRegistration,
- this, origin, service_worker_registration_id, callback,
- base::Passed(&notification_ids)));
+ &PlatformNotificationService::GetDisplayedNotificationsAsync,
+ base::Unretained(service), browser_context_,
+ base::Bind(
+ &PlatformNotificationContextImpl::
+ SynchronizeDisplayedNotificationsForServiceWorkerRegistration,
+ this, origin, service_worker_registration_id, callback)));
}
void PlatformNotificationContextImpl::

Powered by Google App Engine
This is Rietveld 408576698