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

Unified Diff: webkit/appcache/appcache_response.h

Issue 8343018: More groundwork for flat file based response storage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « webkit/appcache/appcache_request_handler_unittest.cc ('k') | webkit/appcache/appcache_response.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_response.h
===================================================================
--- webkit/appcache/appcache_response.h (revision 106339)
+++ webkit/appcache/appcache_response.h (working copy)
@@ -118,6 +118,7 @@
};
AppCacheResponseIO(int64 response_id,
+ int64 group_id,
AppCacheDiskCacheInterface* disk_cache);
virtual void OnIOComplete(int result) = 0;
@@ -129,6 +130,7 @@
void WriteRaw(int index, int offset, net::IOBuffer* buf, int buf_len);
const int64 response_id_;
+ const int64 group_id_;
AppCacheDiskCacheInterface* disk_cache_;
AppCacheDiskCacheInterface::Entry* entry_;
scoped_refptr<HttpResponseInfoIOBuffer> info_buffer_;
@@ -190,6 +192,7 @@
// Should only be constructed by the storage class.
AppCacheResponseReader(int64 response_id,
+ int64 group_id,
AppCacheDiskCacheInterface* disk_cache);
virtual void OnIOComplete(int result);
@@ -252,6 +255,7 @@
// Should only be constructed by the storage class.
AppCacheResponseWriter(int64 response_id,
+ int64 group_id,
AppCacheDiskCacheInterface* disk_cache);
virtual void OnIOComplete(int result);
« no previous file with comments | « webkit/appcache/appcache_request_handler_unittest.cc ('k') | webkit/appcache/appcache_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698