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

Side by Side Diff: content/renderer/push_messaging/push_messaging_dispatcher.h

Issue 1134733006: Push API: use (un)subscription instead of (un)registration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed pre-submit warning 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_ 5 #ifndef CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_
6 #define CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_ 6 #define CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string> 9 #include <string>
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 blink::WebServiceWorkerRegistration* service_worker_registration, 43 blink::WebServiceWorkerRegistration* service_worker_registration,
44 const blink::WebPushSubscriptionOptions& options, 44 const blink::WebPushSubscriptionOptions& options,
45 blink::WebPushSubscriptionCallbacks* callbacks); 45 blink::WebPushSubscriptionCallbacks* callbacks);
46 46
47 void DoSubscribe( 47 void DoSubscribe(
48 blink::WebServiceWorkerRegistration* service_worker_registration, 48 blink::WebServiceWorkerRegistration* service_worker_registration,
49 const blink::WebPushSubscriptionOptions& options, 49 const blink::WebPushSubscriptionOptions& options,
50 blink::WebPushSubscriptionCallbacks* callbacks, 50 blink::WebPushSubscriptionCallbacks* callbacks,
51 const Manifest& manifest); 51 const Manifest& manifest);
52 52
53 void OnRegisterFromDocumentSuccess(int32_t request_id, 53 void OnSubscribeFromDocumentSuccess(int32_t request_id,
54 const GURL& endpoint, 54 const GURL& endpoint,
55 const std::string& registration_id); 55 const std::string& subscription_id);
56 56
57 void OnRegisterFromDocumentError(int32_t request_id, 57 void OnSubscribeFromDocumentError(int32_t request_id,
58 PushRegistrationStatus status); 58 PushRegistrationStatus status);
59 59
60 IDMap<blink::WebPushSubscriptionCallbacks, IDMapOwnPointer> 60 IDMap<blink::WebPushSubscriptionCallbacks, IDMapOwnPointer>
61 subscription_callbacks_; 61 subscription_callbacks_;
62 62
63 DISALLOW_COPY_AND_ASSIGN(PushMessagingDispatcher); 63 DISALLOW_COPY_AND_ASSIGN(PushMessagingDispatcher);
64 }; 64 };
65 65
66 } // namespace content 66 } // namespace content
67 67
68 #endif // CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_ 68 #endif // CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/public/browser/push_messaging_service.cc ('k') | content/renderer/push_messaging/push_messaging_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698