| 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 CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_ | 5 #ifndef CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_ |
| 6 #define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_ | 6 #define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "components/gcm_driver/gcm_app_handler.h" | 10 #include "components/gcm_driver/gcm_app_handler.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 public GCMAppHandler { | 27 public GCMAppHandler { |
| 28 public: | 28 public: |
| 29 // Register profile-specific prefs for GCM. | 29 // Register profile-specific prefs for GCM. |
| 30 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); | 30 static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
| 31 | 31 |
| 32 // If any Service Workers are using push, starts GCM and adds an app handler. | 32 // If any Service Workers are using push, starts GCM and adds an app handler. |
| 33 static void InitializeForProfile(Profile* profile); | 33 static void InitializeForProfile(Profile* profile); |
| 34 | 34 |
| 35 PushMessagingServiceImpl(GCMProfileService* gcm_profile_service, | 35 PushMessagingServiceImpl(GCMProfileService* gcm_profile_service, |
| 36 Profile* profile); | 36 Profile* profile); |
| 37 virtual ~PushMessagingServiceImpl(); | 37 ~PushMessagingServiceImpl() override; |
| 38 | 38 |
| 39 // GCMAppHandler implementation. | 39 // GCMAppHandler implementation. |
| 40 virtual void ShutdownHandler() override; | 40 void ShutdownHandler() override; |
| 41 virtual void OnMessage(const std::string& app_id, | 41 void OnMessage(const std::string& app_id, |
| 42 const GCMClient::IncomingMessage& message) override; | 42 const GCMClient::IncomingMessage& message) override; |
| 43 virtual void OnMessagesDeleted(const std::string& app_id) override; | 43 void OnMessagesDeleted(const std::string& app_id) override; |
| 44 virtual void OnSendError( | 44 void OnSendError( |
| 45 const std::string& app_id, | 45 const std::string& app_id, |
| 46 const GCMClient::SendErrorDetails& send_error_details) override; | 46 const GCMClient::SendErrorDetails& send_error_details) override; |
| 47 virtual void OnSendAcknowledged(const std::string& app_id, | 47 void OnSendAcknowledged(const std::string& app_id, |
| 48 const std::string& message_id) override; | 48 const std::string& message_id) override; |
| 49 virtual bool CanHandle(const std::string& app_id) const override; | 49 bool CanHandle(const std::string& app_id) const override; |
| 50 | 50 |
| 51 // content::PushMessagingService implementation: | 51 // content::PushMessagingService implementation: |
| 52 virtual void Register( | 52 void Register( |
| 53 const GURL& origin, | 53 const GURL& origin, |
| 54 int64 service_worker_registration_id, | 54 int64 service_worker_registration_id, |
| 55 const std::string& sender_id, | 55 const std::string& sender_id, |
| 56 int renderer_id, | 56 int renderer_id, |
| 57 int render_frame_id, | 57 int render_frame_id, |
| 58 bool user_gesture, | 58 bool user_gesture, |
| 59 const content::PushMessagingService::RegisterCallback& callback) override; | 59 const content::PushMessagingService::RegisterCallback& callback) override; |
| 60 | 60 |
| 61 private: | 61 private: |
| 62 void DeliverMessageCallback(const PushMessagingApplicationId& application_id, | 62 void DeliverMessageCallback(const PushMessagingApplicationId& application_id, |
| (...skipping 21 matching lines...) Expand all Loading... |
| 84 Profile* profile_; // It owns our owner. | 84 Profile* profile_; // It owns our owner. |
| 85 | 85 |
| 86 base::WeakPtrFactory<PushMessagingServiceImpl> weak_factory_; | 86 base::WeakPtrFactory<PushMessagingServiceImpl> weak_factory_; |
| 87 | 87 |
| 88 DISALLOW_COPY_AND_ASSIGN(PushMessagingServiceImpl); | 88 DISALLOW_COPY_AND_ASSIGN(PushMessagingServiceImpl); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace gcm | 91 } // namespace gcm |
| 92 | 92 |
| 93 #endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_ | 93 #endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_ |
| OLD | NEW |