summaryrefslogtreecommitdiffstats
path: root/content/worker/worker_thread.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/worker/worker_thread.cc')
-rw-r--r--content/worker/worker_thread.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/content/worker/worker_thread.cc b/content/worker/worker_thread.cc
index d19701a..8425c16 100644
--- a/content/worker/worker_thread.cc
+++ b/content/worker/worker_thread.cc
@@ -117,18 +117,13 @@ bool WorkerThread::OnMessageReceived(const IPC::Message& msg) {
void WorkerThread::OnCreateWorker(
const WorkerProcessMsg_CreateWorker_Params& params) {
- WorkerAppCacheInitInfo appcache_init_info(
- params.creator_process_id,
- params.shared_worker_appcache_id);
-
// WebSharedWorkerStub own themselves.
new WebSharedWorkerStub(
params.url,
params.name,
params.content_security_policy,
params.security_policy_type,
- params.route_id,
- appcache_init_info);
+ params.route_id);
}
// The browser process is likely dead. Terminate all workers.