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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/services/gcm/push_messaging_service_impl.h
diff --git a/chrome/browser/services/gcm/push_messaging_service_impl.h b/chrome/browser/services/gcm/push_messaging_service_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..64aa91ffe0d3401624c2539bff5ff4cf5335fe2c
--- /dev/null
+++ b/chrome/browser/services/gcm/push_messaging_service_impl.h
@@ -0,0 +1,43 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_
+#define CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_
+
+#include "base/compiler_specific.h"
+#include "base/memory/weak_ptr.h"
+#include "components/gcm_driver/gcm_client.h"
+#include "content/public/browser/push_messaging_service.h"
+
+namespace gcm {
+
+class GCMProfileService;
+
+class PushMessagingServiceImpl : public content::PushMessagingService {
+ public:
+ explicit PushMessagingServiceImpl(GCMProfileService* gcm_profile_service);
+ virtual ~PushMessagingServiceImpl();
+
+ // content::PushMessagingService implementation:
+ virtual void Register(
+ const std::string& app_id,
+ const std::string& sender_id,
+ const content::PushMessagingService::RegisterCallback& callback) OVERRIDE;
+
+ private:
+ void DidRegister(
+ const content::PushMessagingService::RegisterCallback& callback,
+ const std::string& registration_id,
+ GCMClient::Result result);
+
+ GCMProfileService* gcm_profile_service_; // It owns us.
+
+ base::WeakPtrFactory<PushMessagingServiceImpl> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(PushMessagingServiceImpl);
+};
+
+} // namespace gcm
+
+#endif // CHROME_BROWSER_SERVICES_GCM_PUSH_MESSAGING_SERVICE_IMPL_H_
« 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