OLD | NEW |
1 // Copyright (c) 2017 The Chromium Authors. All rights reserved. | 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 | 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 "content/browser/appcache/appcache_job.h" | 5 #include "content/browser/appcache/appcache_job.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "content/browser/appcache/appcache_request.h" | 8 #include "content/browser/appcache/appcache_request.h" |
9 #include "content/browser/appcache/appcache_url_loader_job.h" | 9 #include "content/browser/appcache/appcache_url_loader_job.h" |
10 #include "content/browser/appcache/appcache_url_request_job.h" | 10 #include "content/browser/appcache/appcache_url_request_job.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 AppCacheJob::~AppCacheJob() {} | 35 AppCacheJob::~AppCacheJob() {} |
36 | 36 |
37 base::WeakPtr<AppCacheJob> AppCacheJob::GetWeakPtr() { | 37 base::WeakPtr<AppCacheJob> AppCacheJob::GetWeakPtr() { |
38 return weak_factory_.GetWeakPtr(); | 38 return weak_factory_.GetWeakPtr(); |
39 } | 39 } |
40 | 40 |
41 net::URLRequestJob* AppCacheJob::AsURLRequestJob() { | 41 net::URLRequestJob* AppCacheJob::AsURLRequestJob() { |
42 return nullptr; | 42 return nullptr; |
43 } | 43 } |
44 | 44 |
| 45 AppCacheURLLoaderJob* AppCacheJob::AsURLLoaderJob() { |
| 46 return nullptr; |
| 47 } |
| 48 |
45 AppCacheJob::AppCacheJob() : weak_factory_(this) {} | 49 AppCacheJob::AppCacheJob() : weak_factory_(this) {} |
46 | 50 |
47 } // namespace content | 51 } // namespace content |
OLD | NEW |