Index: content/browser/service_worker/service_worker_context_core.h |
diff --git a/content/browser/service_worker/service_worker_context_core.h b/content/browser/service_worker/service_worker_context_core.h |
index 54dcc9db6e37f4b2645c630fd4dcc08ff265bb0d..299ce4c836660e8c90fd3dd666d2ac8ccab9fc2d 100644 |
--- a/content/browser/service_worker/service_worker_context_core.h |
+++ b/content/browser/service_worker/service_worker_context_core.h |
@@ -119,6 +119,9 @@ class CONTENT_EXPORT ServiceWorkerContextCore |
ServiceWorkerJobCoordinator* job_coordinator() { |
return job_coordinator_.get(); |
} |
+ const base::FilePath& storage_partition_path() { |
+ return storage_partition_path_; |
+ } |
// The context class owns the set of ProviderHosts. |
ServiceWorkerProviderHost* GetProviderHost(int process_id, int provider_id); |
@@ -182,6 +185,7 @@ class CONTENT_EXPORT ServiceWorkerContextCore |
std::map<int64, ServiceWorkerRegistration*> live_registrations_; |
std::map<int64, ServiceWorkerVersion*> live_versions_; |
int next_handle_id_; |
+ const base::FilePath storage_partition_path_; |
scoped_refptr<ObserverListThreadSafe<ServiceWorkerContextObserver> > |
observer_list_; |