| 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 55d64ae1807708b8b98d0cfac92427e23ce3dd91..6969660cba8ad38bf08ca0a8c81d5e5cc72e0b82 100644
|
| --- a/content/browser/service_worker/service_worker_context_core.h
|
| +++ b/content/browser/service_worker/service_worker_context_core.h
|
| @@ -117,6 +117,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);
|
| @@ -180,6 +183,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_;
|
|
|