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

Side by Side Diff: content/public/browser/push_messaging_service.h

Issue 658783002: Split PushMessagingStatus enum according to use case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment Created 6 years, 2 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
« no previous file with comments | « content/public/browser/browser_context.h ('k') | content/public/common/push_messaging_status.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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 "url/gurl.h" 13 #include "url/gurl.h"
14 14
15 namespace content { 15 namespace content {
16 16
17 // A push service-agnostic interface that the Push API uses for talking to 17 // A push service-agnostic interface that the Push API uses for talking to
18 // push messaging services like GCM. 18 // push messaging services like GCM.
19 class CONTENT_EXPORT PushMessagingService { 19 class CONTENT_EXPORT PushMessagingService {
20 public: 20 public:
21 typedef base::Callback<void(const GURL& /* endpoint */, 21 typedef base::Callback<void(const GURL& /* endpoint */,
22 const std::string& /* registration_id */, 22 const std::string& /* registration_id */,
23 PushMessagingStatus /* status */)> 23 PushRegistrationStatus /* status */)>
24 RegisterCallback; 24 RegisterCallback;
25 25
26 virtual ~PushMessagingService() {} 26 virtual ~PushMessagingService() {}
27 virtual void Register(const GURL& origin, 27 virtual void Register(const GURL& origin,
28 int64 service_worker_registration_id, 28 int64 service_worker_registration_id,
29 const std::string& sender_id, 29 const std::string& sender_id,
30 int renderer_id, 30 int renderer_id,
31 int render_frame_id, 31 int render_frame_id,
32 bool user_gesture, 32 bool user_gesture,
33 const RegisterCallback& callback) = 0; 33 const RegisterCallback& callback) = 0;
34 }; 34 };
35 35
36 } // namespace content 36 } // namespace content
37 37
38 #endif // CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_ 38 #endif // CONTENT_PUBLIC_BROWSER_PUSH_MESSAGING_SERVICE_H_
OLDNEW
« no previous file with comments | « content/public/browser/browser_context.h ('k') | content/public/common/push_messaging_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698