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

Unified Diff: content/common/service_worker/service_worker_messages.h

Issue 140743012: Start EmbeddedWorker during registration - take 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/common/service_worker/service_worker_messages.h
diff --git a/content/common/service_worker/service_worker_messages.h b/content/common/service_worker/service_worker_messages.h
index 0b5653551d7dcf1f8eae42c845ea63592b62467f..842169ed672252c01089b4e0fea97a0066ea88f4 100644
--- a/content/common/service_worker/service_worker_messages.h
+++ b/content/common/service_worker/service_worker_messages.h
@@ -29,15 +29,17 @@ IPC_STRUCT_TRAITS_END()
// Messages sent from the child process to the browser.
-IPC_MESSAGE_CONTROL4(ServiceWorkerHostMsg_RegisterServiceWorker,
+IPC_MESSAGE_CONTROL5(ServiceWorkerHostMsg_RegisterServiceWorker,
int32 /* thread_id */,
int32 /* request_id */,
+ int /* provider_id */,
GURL /* scope */,
GURL /* script_url */)
-IPC_MESSAGE_CONTROL3(ServiceWorkerHostMsg_UnregisterServiceWorker,
+IPC_MESSAGE_CONTROL4(ServiceWorkerHostMsg_UnregisterServiceWorker,
int32 /* thread_id */,
int32 /* request_id */,
+ int /* provider_id */,
GURL /* scope (url pattern) */)
// Messages sent from the browser to the child process.

Powered by Google App Engine
This is Rietveld 408576698