| 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 #include <vector> | 10 #include <vector> |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 // WebPushClient implementation. | 46 // WebPushClient implementation. |
| 47 void subscribe( | 47 void subscribe( |
| 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) override; | 50 blink::WebPushSubscriptionCallbacks* callbacks) override; |
| 51 | 51 |
| 52 void DidGetManifest( | 52 void DidGetManifest( |
| 53 blink::WebServiceWorkerRegistration* service_worker_registration, | 53 blink::WebServiceWorkerRegistration* service_worker_registration, |
| 54 const blink::WebPushSubscriptionOptions& options, | 54 const blink::WebPushSubscriptionOptions& options, |
| 55 blink::WebPushSubscriptionCallbacks* callbacks, | 55 blink::WebPushSubscriptionCallbacks* callbacks, |
| 56 const GURL& manifest_url, |
| 56 const Manifest& manifest, | 57 const Manifest& manifest, |
| 57 const ManifestDebugInfo&); | 58 const ManifestDebugInfo&); |
| 58 | 59 |
| 59 void DoSubscribe( | 60 void DoSubscribe( |
| 60 blink::WebServiceWorkerRegistration* service_worker_registration, | 61 blink::WebServiceWorkerRegistration* service_worker_registration, |
| 61 const PushSubscriptionOptions& options, | 62 const PushSubscriptionOptions& options, |
| 62 blink::WebPushSubscriptionCallbacks* callbacks); | 63 blink::WebPushSubscriptionCallbacks* callbacks); |
| 63 | 64 |
| 64 void OnSubscribeFromDocumentSuccess(int32_t request_id, | 65 void OnSubscribeFromDocumentSuccess(int32_t request_id, |
| 65 const GURL& endpoint, | 66 const GURL& endpoint, |
| 66 const std::vector<uint8_t>& p256dh, | 67 const std::vector<uint8_t>& p256dh, |
| 67 const std::vector<uint8_t>& auth); | 68 const std::vector<uint8_t>& auth); |
| 68 | 69 |
| 69 void OnSubscribeFromDocumentError(int32_t request_id, | 70 void OnSubscribeFromDocumentError(int32_t request_id, |
| 70 PushRegistrationStatus status); | 71 PushRegistrationStatus status); |
| 71 | 72 |
| 72 IDMap<blink::WebPushSubscriptionCallbacks, IDMapOwnPointer> | 73 IDMap<blink::WebPushSubscriptionCallbacks, IDMapOwnPointer> |
| 73 subscription_callbacks_; | 74 subscription_callbacks_; |
| 74 | 75 |
| 75 DISALLOW_COPY_AND_ASSIGN(PushMessagingDispatcher); | 76 DISALLOW_COPY_AND_ASSIGN(PushMessagingDispatcher); |
| 76 }; | 77 }; |
| 77 | 78 |
| 78 } // namespace content | 79 } // namespace content |
| 79 | 80 |
| 80 #endif // CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_ | 81 #endif // CONTENT_RENDERER_PUSH_MESSAGING_PUSH_MESSAGING_DISPATCHER_H_ |
| OLD | NEW |