Index: content/browser/service_worker/service_worker_fetch_stores_manager.h |
diff --git a/content/browser/service_worker/service_worker_fetch_stores_manager.h b/content/browser/service_worker/service_worker_fetch_stores_manager.h |
index 44c999aeba63ffa36bec95dc8e2dd56009a6d345..10139e1e179714f00614e65717f63f6cc02a9fef 100644 |
--- a/content/browser/service_worker/service_worker_fetch_stores_manager.h |
+++ b/content/browser/service_worker/service_worker_fetch_stores_manager.h |
@@ -22,6 +22,8 @@ namespace content { |
// Keeps track of a ServiceWorkerFetchStores per origin. There is one |
// ServiceWorkerFetchStoresManager per ServiceWorkerContextCore. |
+// TODO(jkarlin): Remove ServiceWorkerFetchStores from memory once they're no |
+// longer in active use. |
michaeln
2014/08/07 00:10:13
Representing a store with a primitive 'int' at thi
jkarlin
2014/08/07 16:02:35
Acknowledged.
|
class CONTENT_EXPORT ServiceWorkerFetchStoresManager { |
public: |
static scoped_ptr<ServiceWorkerFetchStoresManager> Create( |
@@ -47,7 +49,7 @@ class CONTENT_EXPORT ServiceWorkerFetchStoresManager { |
const ServiceWorkerFetchStores::BoolAndErrorCallback& callback); |
void Delete(const GURL& origin, |
const std::string& key, |
- const ServiceWorkerFetchStores::StoreAndErrorCallback& callback); |
+ const ServiceWorkerFetchStores::BoolAndErrorCallback& callback); |
void Keys(const GURL& origin, |
const ServiceWorkerFetchStores::StringsAndErrorCallback& callback); |
// TODO(jkarlin): Add match() function. |