Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1310)

Unified Diff: webkit/appcache/appcache_service.h

Issue 3529009: Fix http/tests/appcache/foreign-fallback.html (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};

Powered by Google App Engine
This is Rietveld 408576698