Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1303)

Side by Side Diff: content/browser/appcache/appcache_job.cc

Issue 2874663004: Provide skeleton functionality for AppCache handling in the network service. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698