| 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 4ec5ea3a2ec81d2b3fe97fa89147150443c5ad6a..9ff4ead07bc124104b7e7da1c42f7ab0655066c2 100644
|
| --- a/content/browser/service_worker/service_worker_context_core.h
|
| +++ b/content/browser/service_worker/service_worker_context_core.h
|
| @@ -120,6 +120,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);
|
| @@ -188,6 +191,8 @@ 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_;
|
|
|
|
|