Index: webkit/appcache/appcache_service.h |
=================================================================== |
--- webkit/appcache/appcache_service.h (revision 64524) |
+++ webkit/appcache/appcache_service.h (working copy) |
@@ -104,23 +104,14 @@ |
class GetInfoHelper; |
typedef std::set<AsyncHelper*> PendingAsyncHelpers; |
+ typedef std::map<int, AppCacheBackendImpl*> BackendMap; |
AppCachePolicy* appcache_policy_; |
- |
- // Deals with persistence. |
scoped_ptr<AppCacheStorage> storage_; |
- |
PendingAsyncHelpers pending_helpers_; |
+ BackendMap backends_; // One 'backend' per child process. |
+ URLRequestContext* request_context_; // Context for use during cache updates. |
- // Track current processes. One 'backend' per child process. |
- typedef std::map<int, AppCacheBackendImpl*> BackendMap; |
- BackendMap backends_; |
- |
- // Context for use during cache updates. |
- URLRequestContext* request_context_; |
- |
- // TODO(jennb): service state: e.g. reached quota? |
- |
DISALLOW_COPY_AND_ASSIGN(AppCacheService); |
}; |