| 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 8d6f44250d5da1540880d293bfd9162b0fc16c15..31592a8a3450ea658a31fad93235bc4e877bbae5 100644
|
| --- a/content/browser/service_worker/service_worker_context_core.h
|
| +++ b/content/browser/service_worker/service_worker_context_core.h
|
| @@ -5,13 +5,20 @@
|
| #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CORE_H_
|
| #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_CORE_H_
|
|
|
| +#include <map>
|
| +
|
| +#include "base/callback.h"
|
| #include "base/files/file_path.h"
|
| #include "base/id_map.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "content/browser/service_worker/service_worker_provider_host.h"
|
| +#include "content/browser/service_worker/service_worker_registration_status.h"
|
| +#include "content/browser/service_worker/service_worker_storage.h"
|
| #include "content/common/content_export.h"
|
|
|
| +class GURL;
|
| +
|
| namespace base {
|
| class FilePath;
|
| }
|
| @@ -22,6 +29,8 @@ class QuotaManagerProxy;
|
|
|
| namespace content {
|
|
|
| +class ServiceWorkerStorage;
|
| +class ServiceWorkerRegistration;
|
| class ServiceWorkerProviderHost;
|
|
|
| // This class manages data associated with service workers.
|
| @@ -33,10 +42,20 @@ class CONTENT_EXPORT ServiceWorkerContextCore
|
| : NON_EXPORTED_BASE(
|
| public base::SupportsWeakPtr<ServiceWorkerContextCore>) {
|
| public:
|
| - // Given an empty |user_data_directory|, nothing will be stored on disk.
|
| + typedef base::Callback<void(ServiceWorkerRegistrationStatus status,
|
| + int64 registration_id)> RegistrationCallback;
|
| + typedef base::Callback<
|
| + void(ServiceWorkerRegistrationStatus status)> UnregistrationCallback;
|
| +
|
| + // This is owned by the StoragePartition, which will supply it with
|
| + // the local path on disk. Given an empty |user_data_directory|,
|
| + // nothing will be stored on disk.
|
| ServiceWorkerContextCore(const base::FilePath& user_data_directory,
|
| quota::QuotaManagerProxy* quota_manager_proxy);
|
| ~ServiceWorkerContextCore();
|
| + void Shutdown();
|
| +
|
| + ServiceWorkerStorage* storage() { return storage_.get(); }
|
|
|
| // The context class owns the set of ProviderHosts.
|
| ServiceWorkerProviderHost* GetProviderHost(int process_id, int provider_id);
|
| @@ -47,6 +66,15 @@ class CONTENT_EXPORT ServiceWorkerContextCore
|
| // Checks the cmdline flag.
|
| bool IsEnabled();
|
|
|
| + // The callback will be called on the IO thread.
|
| + void RegisterServiceWorker(const GURL& pattern,
|
| + const GURL& script_url,
|
| + const RegistrationCallback& callback);
|
| +
|
| + // The callback will be called on the IO thread.
|
| + void UnregisterServiceWorker(const GURL& pattern,
|
| + const UnregistrationCallback& callback);
|
| +
|
| private:
|
| typedef IDMap<ServiceWorkerProviderHost, IDMapOwnPointer> ProviderMap;
|
| typedef IDMap<ProviderMap, IDMapOwnPointer> ProcessToProviderMap;
|
| @@ -55,9 +83,18 @@ class CONTENT_EXPORT ServiceWorkerContextCore
|
| return providers_.Lookup(process_id);
|
| }
|
|
|
| + void RegistrationComplete(
|
| + const RegistrationCallback& callback,
|
| + ServiceWorkerRegistrationStatus status,
|
| + const scoped_refptr<ServiceWorkerRegistration>& registration);
|
| + void UnregistrationComplete(const UnregistrationCallback& callback,
|
| + ServiceWorkerRegistrationStatus status);
|
| +
|
| ProcessToProviderMap providers_;
|
| - scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
|
| - base::FilePath path_;
|
| + scoped_ptr<ServiceWorkerStorage> storage_;
|
| + bool is_shutdown_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextCore);
|
| };
|
|
|
| } // namespace content
|
|
|