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

Unified Diff: content/child/push_messaging/push_provider.h

Issue 1154303003: Move push endpoint concatenation up to the browser process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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
Index: content/child/push_messaging/push_provider.h
diff --git a/content/child/push_messaging/push_provider.h b/content/child/push_messaging/push_provider.h
index efd726167aaab262485bd0be30a24684abb8cdd7..b47eea8076e751e224bd594b66c4bc71dac8cc13 100644
--- a/content/child/push_messaging/push_provider.h
+++ b/content/child/push_messaging/push_provider.h
@@ -64,8 +64,7 @@ class PushProvider : public blink::WebPushProvider,
// IPC message handlers.
void OnSubscribeFromWorkerSuccess(int request_id,
- const GURL& endpoint,
- const std::string& subscription_id);
+ const GURL& endpoint);
void OnSubscribeFromWorkerError(int request_id,
PushRegistrationStatus status);
void OnUnsubscribeSuccess(int request_id, bool did_unsubscribe);
@@ -73,8 +72,7 @@ class PushProvider : public blink::WebPushProvider,
blink::WebPushError::ErrorType error_type,
const std::string& error_message);
void OnGetRegistrationSuccess(int request_id,
- const GURL& endpoint,
- const std::string& registration_id);
+ const GURL& endpoint);
void OnGetRegistrationError(int request_id, PushGetRegistrationStatus status);
void OnGetPermissionStatusSuccess(int request_id,
blink::WebPushPermissionStatus status);
« no previous file with comments | « content/browser/push_messaging/push_messaging_message_filter.cc ('k') | content/child/push_messaging/push_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698