Index: content/browser/worker_host/worker_service_impl.h |
=================================================================== |
--- content/browser/worker_host/worker_service_impl.h (revision 154786) |
+++ content/browser/worker_host/worker_service_impl.h (working copy) |
@@ -37,11 +37,13 @@ |
void CreateWorker(const ViewHostMsg_CreateWorker_Params& params, |
int route_id, |
WorkerMessageFilter* filter, |
- ResourceContext* resource_context); |
+ ResourceContext* resource_context, |
+ StoragePartitionImpl* storage_partition); |
void LookupSharedWorker(const ViewHostMsg_CreateWorker_Params& params, |
int route_id, |
WorkerMessageFilter* filter, |
ResourceContext* resource_context, |
+ StoragePartitionImpl* storage_partition, |
bool* exists, |
bool* url_error); |
void CancelCreateDedicatedWorker(int route_id, WorkerMessageFilter* filter); |
@@ -115,20 +117,24 @@ |
WorkerProcessHost::WorkerInstance* CreatePendingInstance( |
const GURL& url, |
const string16& name, |
- ResourceContext* resource_context); |
+ ResourceContext* resource_context, |
+ StoragePartitionImpl* storage_partition); |
WorkerProcessHost::WorkerInstance* FindPendingInstance( |
const GURL& url, |
const string16& name, |
- ResourceContext* resource_context); |
+ ResourceContext* resource_context, |
+ StoragePartitionImpl* storage_partition); |
void RemovePendingInstances( |
const GURL& url, |
const string16& name, |
- ResourceContext* resource_context); |
+ ResourceContext* resource_context, |
+ StoragePartitionImpl* storage_partition); |
WorkerProcessHost::WorkerInstance* FindSharedWorkerInstance( |
const GURL& url, |
const string16& name, |
- ResourceContext* resource_context); |
+ ResourceContext* resource_context, |
+ StoragePartitionImpl* storage_partition); |
NotificationRegistrar registrar_; |
int next_worker_route_id_; |