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

Unified Diff: content/common/view_messages.h

Issue 2601893002: SharedWorker: Remove message forwarding mechanism (Closed)
Patch Set: Created 4 years 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/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 9c7c90abb22c2dd86abcd750000c19291588bd9a..15f27d51c3f1eddef682695bd1d92a3058ce1c5a 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -715,10 +715,11 @@ IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateWorker,
// is detached).
IPC_MESSAGE_CONTROL1(ViewHostMsg_DocumentDetached, uint64_t /* document_id */)
-// Wraps an IPC message that's destined to the worker on the renderer->browser
-// hop.
-IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker,
- IPC::Message /* message */)
+// A renderer sends this to the browser process when it wants to connect to a
+// worker.
+IPC_MESSAGE_CONTROL2(ViewHostMsg_ConnectToWorker,
+ int /* route_id */,
+ int /* sent_message_port_id */)
// Tells the browser that a specific Appcache manifest in the current page
// was accessed.

Powered by Google App Engine
This is Rietveld 408576698