| 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);
|
|
|