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_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ |
6 #define CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
12 #include "content/public/common/push_messaging_status.h" | 12 #include "content/public/common/push_messaging_status.h" |
| 13 #include "third_party/WebKit/public/platform/WebPushPermissionStatus.h" |
13 #include "url/gurl.h" | 14 #include "url/gurl.h" |
14 | 15 |
15 namespace content { | 16 namespace content { |
16 | 17 |
17 // A push service-agnostic interface that the Push API uses for talking to | 18 // A push service-agnostic interface that the Push API uses for talking to |
18 // push messaging services like GCM. | 19 // push messaging services like GCM. |
19 class CONTENT_EXPORT PushMessagingService { | 20 class CONTENT_EXPORT PushMessagingService { |
20 public: | 21 public: |
21 typedef base::Callback<void(const GURL& /* endpoint */, | 22 typedef base::Callback<void(const GURL& /* endpoint */, |
22 const std::string& /* registration_id */, | 23 const std::string& /* registration_id */, |
23 PushRegistrationStatus /* status */)> | 24 PushRegistrationStatus /* status */)> |
24 RegisterCallback; | 25 RegisterCallback; |
25 | 26 |
26 virtual ~PushMessagingService() {} | 27 virtual ~PushMessagingService() {} |
| 28 |
| 29 // Register the given |sender_id| with GCM. |
27 virtual void Register(const GURL& origin, | 30 virtual void Register(const GURL& origin, |
28 int64 service_worker_registration_id, | 31 int64 service_worker_registration_id, |
29 const std::string& sender_id, | 32 const std::string& sender_id, |
30 int renderer_id, | 33 int renderer_id, |
31 int render_frame_id, | 34 int render_frame_id, |
32 bool user_gesture, | 35 bool user_gesture, |
33 const RegisterCallback& callback) = 0; | 36 const RegisterCallback& callback) = 0; |
| 37 |
| 38 // Check whether the requester has permission to register for Push |
| 39 // Messages |
| 40 virtual blink::WebPushPermissionStatus GetPermissionStatus( |
| 41 const GURL& requesting_origin, |
| 42 int renderer_id, |
| 43 int render_frame_id) = 0; |
34 }; | 44 }; |
35 | 45 |
36 } // namespace content | 46 } // namespace content |
37 | 47 |
38 #endif // CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ | 48 #endif // CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ |
OLD | NEW |