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

Unified Diff: content/renderer/push_messaging_dispatcher.cc

Issue 219653002: Push API: send and receive IPC messages for registration. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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: content/renderer/push_messaging_dispatcher.cc
diff --git a/content/renderer/push_messaging_dispatcher.cc b/content/renderer/push_messaging_dispatcher.cc
new file mode 100644
index 0000000000000000000000000000000000000000..42ec23a36606603e98f24500c84f5e173585854d
--- /dev/null
+++ b/content/renderer/push_messaging_dispatcher.cc
@@ -0,0 +1,70 @@
+// 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.
+
+#include "content/renderer/push_messaging_dispatcher.h"
+
+#include "content/common/push_messaging_messages.h"
+#include "content/renderer/render_view_impl.h"
+#include "third_party/WebKit/public/platform/WebPushRegistration.h"
+#include "third_party/WebKit/public/platform/WebString.h"
Peter Beverloo 2014/04/01 14:53:18 WebString.h is already included from the header fi
Michael van Ouwerkerk 2014/04/02 14:25:15 Done.
+
+namespace content {
+
+PushMessagingDispatcher::PushMessagingDispatcher(RenderViewImpl* render_view)
+ : RenderViewObserver(render_view) {}
+
+PushMessagingDispatcher::~PushMessagingDispatcher() {}
+
+bool PushMessagingDispatcher::OnMessageReceived(const IPC::Message& message) {
+ bool handled = true;
+ IPC_BEGIN_MESSAGE_MAP(PushMessagingDispatcher, message)
+ IPC_MESSAGE_HANDLER(PushMessagingMsg_RegisterSuccess, OnRegisterSuccess)
Peter Beverloo 2014/04/01 14:53:18 Please indent the IPC_MESSAGE_HANDLER and IPC_MESS
Michael van Ouwerkerk 2014/04/02 14:25:15 Done.
+ IPC_MESSAGE_HANDLER(PushMessagingMsg_RegisterError, OnRegisterError)
+ IPC_MESSAGE_UNHANDLED(handled = false)
+ IPC_END_MESSAGE_MAP()
+ return handled;
+}
+
+void PushMessagingDispatcher::registerPushMessaging(
+ const blink::WebString& sender_id,
+ blink::WebPushRegistrationCallbacks* callbacks) {
+ DCHECK(callbacks);
+ int callbacks_id = registration_callbacks_.Add(callbacks);
+ Send(new PushMessagingHostMsg_Register(
+ routing_id(), callbacks_id, sender_id.utf8()));
+}
+
+void PushMessagingDispatcher::OnRegisterSuccess(
+ int32 callbacks_id,
+ const std::string& endpoint,
+ const std::string& registration_id) {
+ blink::WebPushRegistrationCallbacks* callbacks =
+ registration_callbacks_.Lookup(callbacks_id);
+ DCHECK(callbacks);
Peter Beverloo 2014/04/01 14:53:18 Can we just use CHECK here? If we receive an IPC w
Michael van Ouwerkerk 2014/04/02 14:25:15 Done.
+ if (!callbacks)
+ return;
+
+ callbacks->onSuccess(new blink::WebPushRegistration(
Peter Beverloo 2014/04/01 14:53:18 We leak the WebPushRegistration object here. Can y
Michael van Ouwerkerk 2014/04/02 14:25:15 Done.
+ blink::WebString::fromUTF8(endpoint),
+ blink::WebString::fromUTF8(registration_id)));
+ registration_callbacks_.Remove(callbacks_id);
+}
+
+void PushMessagingDispatcher::OnRegisterError(int32 callbacks_id,
+ PushMessagingStatus status) {
+ blink::WebPushRegistrationCallbacks* callbacks =
+ registration_callbacks_.Lookup(callbacks_id);
+ DCHECK(callbacks);
+ if (!callbacks)
+ return;
+
+ scoped_ptr<blink::WebPushError> error(
+ new blink::WebPushError(
+ blink::WebPushError::AbortError,
+ blink::WebString::fromUTF8(PushMessagingStatusToString(status))));
+ callbacks->onError(error.release());
+ registration_callbacks_.Remove(callbacks_id);
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698