OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/browser/appcache/appcache_url_loader_job.h" |
| 6 #include "content/browser/appcache/appcache_entry.h" |
| 7 |
| 8 namespace content { |
| 9 |
| 10 void AppCacheURLLoaderJob::Kill() {} |
| 11 |
| 12 bool AppCacheURLLoaderJob::IsStarted() const { |
| 13 return false; |
| 14 } |
| 15 |
| 16 bool AppCacheURLLoaderJob::IsWaiting() const { |
| 17 return false; |
| 18 } |
| 19 |
| 20 bool AppCacheURLLoaderJob::IsDeliveringAppCacheResponse() const { |
| 21 return false; |
| 22 } |
| 23 |
| 24 bool AppCacheURLLoaderJob::IsDeliveringNetworkResponse() const { |
| 25 return false; |
| 26 } |
| 27 |
| 28 bool AppCacheURLLoaderJob::IsDeliveringErrorResponse() const { |
| 29 return false; |
| 30 } |
| 31 |
| 32 bool AppCacheURLLoaderJob::IsCacheEntryNotFound() const { |
| 33 return false; |
| 34 } |
| 35 |
| 36 void AppCacheURLLoaderJob::DeliverAppCachedResponse(const GURL& manifest_url, |
| 37 int64_t cache_id, |
| 38 const AppCacheEntry& entry, |
| 39 bool is_fallback) {} |
| 40 |
| 41 void AppCacheURLLoaderJob::DeliverNetworkResponse() {} |
| 42 |
| 43 void AppCacheURLLoaderJob::DeliverErrorResponse() {} |
| 44 |
| 45 const GURL& AppCacheURLLoaderJob::GetURL() const { |
| 46 return url_; |
| 47 } |
| 48 |
| 49 } // namespace content |
OLD | NEW |