OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |