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

Unified Diff: content/browser/worker_host/worker_service_impl.h

Issue 10916132: AppCache and StoragePartition'ing (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 3 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/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_;

Powered by Google App Engine
This is Rietveld 408576698