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

Unified Diff: webkit/appcache/appcache_service.h

Issue 2249005: AppCache: Use a dedicated thread for the disk cache. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Bound to IO thread Created 10 years, 7 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
« no previous file with comments | « webkit/appcache/appcache_disk_cache.cc ('k') | webkit/appcache/appcache_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_service.h
===================================================================
--- webkit/appcache/appcache_service.h (revision 48989)
+++ webkit/appcache/appcache_service.h (working copy)
@@ -19,6 +19,10 @@
class URLRequestContext;
+namespace base {
+class MessageLoopProxy;
+}
+
namespace appcache {
class AppCacheBackendImpl;
@@ -62,7 +66,8 @@
AppCacheService();
virtual ~AppCacheService();
- void Initialize(const FilePath& cache_directory);
+ void Initialize(const FilePath& cache_directory,
+ base::MessageLoopProxy* cache_thread);
// Purges any memory not needed.
void PurgeMemory() {
« no previous file with comments | « webkit/appcache/appcache_disk_cache.cc ('k') | webkit/appcache/appcache_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698