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

Unified Diff: content/common/view_messages.h

Issue 8416029: Removing dedicated worker-related IPC code (second round). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Style nit Created 9 years, 2 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
« no previous file with comments | « content/browser/worker_host/worker_message_filter.cc ('k') | content/content_renderer.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 03fa43ca44f3008a25dff2b974d6b55df57f828a..847f19d6f30cf513cde23159b85801aefb09f485 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -345,9 +345,6 @@ IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params)
// URL for the worker script.
IPC_STRUCT_MEMBER(GURL, url)
- // True if this is a SharedWorker, false if it is a dedicated Worker.
- IPC_STRUCT_MEMBER(bool, is_shared)
-
// Name for a SharedWorker, otherwise empty string.
IPC_STRUCT_MEMBER(string16, name)
@@ -361,9 +358,6 @@ IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params)
// a new unique ID is created and assigned to the worker.
IPC_STRUCT_MEMBER(int, route_id)
- // The ID of the parent's appcache host, only valid for dedicated workers.
- IPC_STRUCT_MEMBER(int, parent_appcache_host_id)
-
// The ID of the appcache the main shared worker script resource was loaded
// from, only valid for shared workers.
IPC_STRUCT_MEMBER(int64, script_resource_appcache_id)
@@ -1543,13 +1537,6 @@ IPC_MESSAGE_CONTROL1(ViewHostMsg_DocumentDetached,
IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker,
IPC::Message /* message */)
-// Sent if the worker object has sent a ViewHostMsg_CreateDedicatedWorker
-// message and not received a ViewMsg_WorkerCreated reply, but in the
-// mean time it's destroyed. This tells the browser to not create the queued
-// worker.
-IPC_MESSAGE_CONTROL1(ViewHostMsg_CancelCreateDedicatedWorker,
- int /* route_id */)
-
// Tells the browser that a specific Appcache manifest in the current page
// was accessed.
IPC_MESSAGE_ROUTED2(ViewHostMsg_AppCacheAccessed,
« no previous file with comments | « content/browser/worker_host/worker_message_filter.cc ('k') | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698