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

Unified Diff: content/renderer/push_messaging/push_messaging_dispatcher.cc

Issue 1944863002: Push API: Fix stored sender ID being out of sync with registration ID (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ii7swdb
Patch Set: Add TODO Created 4 years, 7 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
« no previous file with comments | « content/common/push_messaging_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/push_messaging/push_messaging_dispatcher.cc
diff --git a/content/renderer/push_messaging/push_messaging_dispatcher.cc b/content/renderer/push_messaging/push_messaging_dispatcher.cc
index 1cfc044fb31a24b704dbe8e5c64891b7d977663c..edb82ad197f56ea5e095970603f8c4862f1ae37b 100644
--- a/content/renderer/push_messaging/push_messaging_dispatcher.cc
+++ b/content/renderer/push_messaging/push_messaging_dispatcher.cc
@@ -102,8 +102,8 @@ void PushMessagingDispatcher::DoSubscribe(
PUSH_REGISTRATION_STATUS_NO_SENDER_ID);
return;
}
- Send(new PushMessagingHostMsg_SubscribeFromDocument(
- routing_id(), request_id, options, service_worker_registration_id));
+ Send(new PushMessagingHostMsg_Subscribe(
+ routing_id(), request_id, service_worker_registration_id, options));
}
void PushMessagingDispatcher::OnSubscribeFromDocumentSuccess(
« no previous file with comments | « content/common/push_messaging_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698