OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_WRAPPER_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_WRAPPER_H_ |
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_WRAPPER_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_WRAPPER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 // The process manager can be used on either UI or IO. | 62 // The process manager can be used on either UI or IO. |
63 ServiceWorkerProcessManager* process_manager() { | 63 ServiceWorkerProcessManager* process_manager() { |
64 return process_manager_.get(); | 64 return process_manager_.get(); |
65 } | 65 } |
66 | 66 |
67 // ServiceWorkerContext implementation: | 67 // ServiceWorkerContext implementation: |
68 virtual void RegisterServiceWorker( | 68 virtual void RegisterServiceWorker( |
69 const GURL& pattern, | 69 const GURL& pattern, |
70 const GURL& script_url, | 70 const GURL& script_url, |
71 const ResultCallback& continuation) override; | 71 const ResultCallback& continuation) override; |
72 virtual void UnregisterServiceWorker(const GURL& pattern, | 72 virtual void UnregisterServiceWorker( |
73 const ResultCallback& continuation) | 73 const GURL& pattern, |
74 override; | 74 const ResultCallback& continuation) override; |
75 virtual void Terminate() override; | 75 virtual void Terminate() override; |
76 virtual void GetAllOriginsInfo(const GetUsageInfoCallback& callback) override; | 76 virtual void GetAllOriginsInfo(const GetUsageInfoCallback& callback) override; |
77 virtual void DeleteForOrigin(const GURL& origin_url, | |
78 const ResultCallback& done); | |
michaeln
2014/10/15 22:21:36
since this method isn't in the public ServiceWorke
dmurph
2014/10/16 01:41:57
Done.
| |
77 virtual void DeleteForOrigin(const GURL& origin_url) override; | 79 virtual void DeleteForOrigin(const GURL& origin_url) override; |
78 | 80 |
79 void AddObserver(ServiceWorkerContextObserver* observer); | 81 void AddObserver(ServiceWorkerContextObserver* observer); |
80 void RemoveObserver(ServiceWorkerContextObserver* observer); | 82 void RemoveObserver(ServiceWorkerContextObserver* observer); |
81 | 83 |
82 bool is_incognito() const { return is_incognito_; } | 84 bool is_incognito() const { return is_incognito_; } |
83 | 85 |
84 // The URLRequestContext doesn't exist until after the StoragePartition is | 86 // The URLRequestContext doesn't exist until after the StoragePartition is |
85 // made (which is after this object is made). This function must be called | 87 // made (which is after this object is made). This function must be called |
86 // after this object is created but before any ServiceWorkerCache operations. | 88 // after this object is created but before any ServiceWorkerCache operations. |
87 // It must be called on the IO thread. If either parameter is NULL the | 89 // It must be called on the IO thread. If either parameter is NULL the |
88 // function immediately returns without forwarding to the | 90 // function immediately returns without forwarding to the |
89 // ServiceWorkerCacheStorageManager. | 91 // ServiceWorkerCacheStorageManager. |
90 void SetBlobParametersForCache( | 92 void SetBlobParametersForCache( |
91 net::URLRequestContextGetter* request_context, | 93 net::URLRequestContextGetter* request_context, |
92 ChromeBlobStorageContext* blob_storage_context); | 94 ChromeBlobStorageContext* blob_storage_context); |
93 | 95 |
94 private: | 96 private: |
95 friend class base::RefCountedThreadSafe<ServiceWorkerContextWrapper>; | 97 friend class base::RefCountedThreadSafe<ServiceWorkerContextWrapper>; |
96 friend class EmbeddedWorkerTestHelper; | 98 friend class EmbeddedWorkerTestHelper; |
97 friend class ServiceWorkerProcessManager; | 99 friend class ServiceWorkerProcessManager; |
100 friend class MockServiceWorkerContextWrapper; | |
101 | |
98 virtual ~ServiceWorkerContextWrapper(); | 102 virtual ~ServiceWorkerContextWrapper(); |
99 | 103 |
100 void InitInternal( | 104 void InitInternal( |
101 const base::FilePath& user_data_directory, | 105 const base::FilePath& user_data_directory, |
102 const scoped_refptr<base::SequencedTaskRunner>& stores_task_runner, | 106 const scoped_refptr<base::SequencedTaskRunner>& stores_task_runner, |
103 const scoped_refptr<base::SequencedTaskRunner>& database_task_runner, | 107 const scoped_refptr<base::SequencedTaskRunner>& database_task_runner, |
104 const scoped_refptr<base::SingleThreadTaskRunner>& disk_cache_thread, | 108 const scoped_refptr<base::SingleThreadTaskRunner>& disk_cache_thread, |
105 storage::QuotaManagerProxy* quota_manager_proxy); | 109 storage::QuotaManagerProxy* quota_manager_proxy); |
106 void ShutdownOnIO(); | 110 void ShutdownOnIO(); |
107 | 111 |
108 void DidDeleteAndStartOver(ServiceWorkerStatusCode status); | 112 void DidDeleteAndStartOver(ServiceWorkerStatusCode status); |
109 | 113 |
110 void DidGetAllRegistrationsForGetAllOrigins( | 114 void DidGetAllRegistrationsForGetAllOrigins( |
111 const GetUsageInfoCallback& callback, | 115 const GetUsageInfoCallback& callback, |
112 const std::vector<ServiceWorkerRegistrationInfo>& registrations); | 116 const std::vector<ServiceWorkerRegistrationInfo>& registrations); |
113 void DidGetAllRegistrationsForDeleteForOrigin( | |
114 const GURL& origin, | |
115 const std::vector<ServiceWorkerRegistrationInfo>& registrations); | |
116 | 117 |
117 const scoped_refptr<ObserverListThreadSafe<ServiceWorkerContextObserver> > | 118 const scoped_refptr<ObserverListThreadSafe<ServiceWorkerContextObserver> > |
118 observer_list_; | 119 observer_list_; |
119 const scoped_ptr<ServiceWorkerProcessManager> process_manager_; | 120 const scoped_ptr<ServiceWorkerProcessManager> process_manager_; |
120 // Cleared in Shutdown(): | 121 // Cleared in Shutdown(): |
121 scoped_ptr<ServiceWorkerContextCore> context_core_; | 122 scoped_ptr<ServiceWorkerContextCore> context_core_; |
122 | 123 |
123 // Initialized in Init(); true of the user data directory is empty. | 124 // Initialized in Init(); true of the user data directory is empty. |
124 bool is_incognito_; | 125 bool is_incognito_; |
125 }; | 126 }; |
126 | 127 |
127 } // namespace content | 128 } // namespace content |
128 | 129 |
129 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_WRAPPER_H_ | 130 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_WRAPPER_H_ |
OLD | NEW |