Index: content/browser/push_messaging_message_filter.h |
diff --git a/content/browser/push_messaging_message_filter.h b/content/browser/push_messaging_message_filter.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e9a9a6d6e4b06a1ada2b8b1215b132f4b12971e1 |
--- /dev/null |
+++ b/content/browser/push_messaging_message_filter.h |
@@ -0,0 +1,53 @@ |
+// 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 CONTENT_BROWSER_PUSH_MESSAGING_MESSAGE_FILTER_H_ |
+#define CONTENT_BROWSER_PUSH_MESSAGING_MESSAGE_FILTER_H_ |
+ |
+#include <string> |
+ |
+#include "base/memory/scoped_ptr.h" |
+#include "content/public/browser/browser_message_filter.h" |
+#include "content/public/common/push_messaging_status.h" |
+ |
+namespace content { |
+ |
+class PushMessagingService; |
+ |
+class PushMessagingMessageFilter : public BrowserMessageFilter { |
+ public: |
+ explicit PushMessagingMessageFilter(int render_process_id); |
+ |
+ private: |
+ virtual ~PushMessagingMessageFilter(); |
+ |
+ // BrowserMessageFilter implementation. |
+ virtual bool OnMessageReceived(const IPC::Message& message, |
+ bool* message_was_ok) OVERRIDE; |
+ |
+ void OnRegister(int routing_id, |
+ int callbacks_id, |
+ const std::string& channel_name); |
+ |
+ void DoRegister(int routing_id, |
+ int callbacks_id, |
+ const std::string& channel_name); |
+ |
+ void DidRegister(int routing_id, |
+ int callbacks_id, |
+ const std::string& channel_name, |
+ const std::string& registration_id, |
+ PushMessagingStatus status); |
+ |
+ PushMessagingService* service(); |
+ |
+ int render_process_id_; |
+ scoped_ptr<PushMessagingService> service_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(PushMessagingMessageFilter); |
+}; |
+ |
+} // namespace content |
+ |
+#endif // CONTENT_BROWSER_PUSH_MESSAGING_MESSAGE_FILTER_H_ |