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

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

Issue 2848493007: Reduce/Remove URLRequest dependencies from AppCacheRequestHandler (Closed)
Patch Set: Add comments 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
(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
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_url_loader_job.h ('k') | content/browser/appcache/appcache_url_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698