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/WebPushPermissionCallback.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 PushMessagingStatus /* status */)> | 24 PushMessagingStatus /* status */)> |
24 RegisterCallback; | 25 RegisterCallback; |
25 | 26 |
26 virtual ~PushMessagingService() {} | 27 virtual ~PushMessagingService() {} |
27 virtual void Register(const GURL& origin, | 28 virtual void Register(const GURL& origin, |
28 int64 service_worker_registration_id, | 29 int64 service_worker_registration_id, |
29 const std::string& sender_id, | 30 const std::string& sender_id, |
30 int renderer_id, | 31 int renderer_id, |
31 int render_frame_id, | 32 int render_frame_id, |
32 bool user_gesture, | 33 bool user_gesture, |
33 const RegisterCallback& callback) = 0; | 34 const RegisterCallback& callback) = 0; |
| 35 virtual blink::WebPushPermissionCallback::PushPermissionStatus |
| 36 PermissionStatus( |
| 37 const GURL& requesting_origin, int renderer_id, int render_frame_id) = 0; |
34 }; | 38 }; |
35 | 39 |
36 } // namespace content | 40 } // namespace content |
37 | 41 |
38 #endif // CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ | 42 #endif // CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ |
OLD | NEW |