| Index: webkit/appcache/appcache_url_request_job.h
|
| ===================================================================
|
| --- webkit/appcache/appcache_url_request_job.h (revision 57090)
|
| +++ webkit/appcache/appcache_url_request_job.h (working copy)
|
| @@ -69,6 +69,11 @@
|
| return has_been_killed_;
|
| }
|
|
|
| + // Returns true if the cache entry was not found in the disk cache.
|
| + bool cache_entry_not_found() const {
|
| + return cache_entry_not_found_;
|
| + }
|
| +
|
| private:
|
| friend class AppCacheRequestHandlerTest;
|
| friend class AppCacheURLRequestJobTest;
|
| @@ -132,6 +137,7 @@
|
| int64 cache_id_;
|
| AppCacheEntry entry_;
|
| bool is_fallback_;
|
| + bool cache_entry_not_found_;
|
| scoped_refptr<AppCacheResponseInfo> info_;
|
| net::HttpByteRange range_requested_;
|
| scoped_ptr<net::HttpResponseInfo> range_response_info_;
|
|
|