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

Side by Side Diff: chrome/browser/services/gcm/push_messaging_service_impl.h

Issue 317823007: Hook PushMessagingMessageFilter up to GCMDriver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Send failure IPC when service is NULL Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_
6 #define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h"
10 #include "components/gcm_driver/gcm_client.h"
11 #include "content/public/browser/push_messaging_service.h"
12
13 namespace gcm {
14
15 class GCMProfileService;
16
17 class PushMessagingServiceImpl : public content::PushMessagingService {
18 public:
19 explicit PushMessagingServiceImpl(GCMProfileService* gcm_profile_service);
20 virtual ~PushMessagingServiceImpl();
21
22 // content::PushMessagingService implementation:
23 virtual void Register(
24 const std::string& app_id,
25 const std::string& sender_id,
26 const content::PushMessagingService::RegisterCallback& callback) OVERRIDE;
27
28 private:
29 void DidRegister(
30 const content::PushMessagingService::RegisterCallback& callback,
31 const std::string& registration_id,
32 GCMClient::Result result);
33
34 GCMProfileService* gcm_profile_service_; // It owns us.
35
36 base::WeakPtrFactory<PushMessagingServiceImpl> weak_factory_;
37
38 DISALLOW_COPY_AND_ASSIGN(PushMessagingServiceImpl);
39 };
40
41 } // namespace gcm
42
43 #endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/services/gcm/gcm_profile_service.cc ('k') | chrome/browser/services/gcm/push_messaging_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698