OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/appcache/appcache_request_handler.h" | 5 #include "webkit/appcache/appcache_request_handler.h" |
6 | 6 |
7 #include "net/url_request/url_request.h" | 7 #include "net/url_request/url_request.h" |
8 #include "net/url_request/url_request_job.h" | 8 #include "net/url_request/url_request_job.h" |
9 #include "webkit/appcache/appcache.h" | 9 #include "webkit/appcache/appcache.h" |
10 #include "webkit/appcache/appcache_url_request_job.h" | 10 #include "webkit/appcache/appcache_url_request_job.h" |
11 | 11 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 DCHECK(job_->is_delivering_network_response()); | 56 DCHECK(job_->is_delivering_network_response()); |
57 job_ = NULL; | 57 job_ = NULL; |
58 return NULL; | 58 return NULL; |
59 } | 59 } |
60 | 60 |
61 // Clear out our 'found' fields since we're starting a request for a | 61 // Clear out our 'found' fields since we're starting a request for a |
62 // new resource, any values in those fields are no longer valid. | 62 // new resource, any values in those fields are no longer valid. |
63 found_entry_ = AppCacheEntry(); | 63 found_entry_ = AppCacheEntry(); |
64 found_fallback_entry_ = AppCacheEntry(); | 64 found_fallback_entry_ = AppCacheEntry(); |
65 found_cache_id_ = kNoCacheId; | 65 found_cache_id_ = kNoCacheId; |
66 found_manifest_url_ = GURL::EmptyGURL(); | 66 found_manifest_url_ = GURL(); |
67 found_network_namespace_ = false; | 67 found_network_namespace_ = false; |
68 | 68 |
69 if (is_main_request_) | 69 if (is_main_request_) |
70 MaybeLoadMainResource(request); | 70 MaybeLoadMainResource(request); |
71 else | 71 else |
72 MaybeLoadSubResource(request); | 72 MaybeLoadSubResource(request); |
73 | 73 |
74 // If its been setup to deliver a network response, we can just delete | 74 // If its been setup to deliver a network response, we can just delete |
75 // it now and return NULL instead to achieve that since it couldn't | 75 // it now and return NULL instead to achieve that since it couldn't |
76 // have been started yet. | 76 // have been started yet. |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 if (!host_->associated_cache() || | 300 if (!host_->associated_cache() || |
301 !host_->associated_cache()->is_complete()) { | 301 !host_->associated_cache()->is_complete()) { |
302 DeliverNetworkResponse(); | 302 DeliverNetworkResponse(); |
303 return; | 303 return; |
304 } | 304 } |
305 | 305 |
306 ContinueMaybeLoadSubResource(); | 306 ContinueMaybeLoadSubResource(); |
307 } | 307 } |
308 | 308 |
309 } // namespace appcache | 309 } // namespace appcache |
OLD | NEW |