OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 return WebCachePolicy::UseProtocolCachePolicy; | 57 return WebCachePolicy::UseProtocolCachePolicy; |
58 } | 58 } |
59 | 59 |
60 void FetchContext::dispatchWillSendRequest(unsigned long, | 60 void FetchContext::dispatchWillSendRequest(unsigned long, |
61 ResourceRequest&, | 61 ResourceRequest&, |
62 const ResourceResponse&, | 62 const ResourceResponse&, |
63 const FetchInitiatorInfo&) {} | 63 const FetchInitiatorInfo&) {} |
64 | 64 |
65 void FetchContext::dispatchDidLoadResourceFromMemoryCache( | 65 void FetchContext::dispatchDidLoadResourceFromMemoryCache( |
66 unsigned long, | 66 unsigned long, |
67 Resource*, | 67 const ResourceRequest&, |
68 WebURLRequest::FrameType, | 68 const ResourceResponse&) {} |
69 WebURLRequest::RequestContext) {} | |
70 | 69 |
71 void FetchContext::dispatchDidReceiveResponse(unsigned long, | 70 void FetchContext::dispatchDidReceiveResponse(unsigned long, |
72 const ResourceResponse&, | 71 const ResourceResponse&, |
73 WebURLRequest::FrameType, | 72 WebURLRequest::FrameType, |
74 WebURLRequest::RequestContext, | 73 WebURLRequest::RequestContext, |
75 Resource*) {} | 74 Resource*, |
| 75 ResourceLoadStartType) {} |
76 | 76 |
77 void FetchContext::dispatchDidReceiveData(unsigned long, const char*, int) {} | 77 void FetchContext::dispatchDidReceiveData(unsigned long, const char*, int) {} |
78 | 78 |
79 void FetchContext::dispatchDidReceiveEncodedData(unsigned long, int) {} | 79 void FetchContext::dispatchDidReceiveEncodedData(unsigned long, int) {} |
80 | 80 |
81 void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {} | 81 void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {} |
82 | 82 |
83 void FetchContext::dispatchDidFinishLoading(unsigned long, | 83 void FetchContext::dispatchDidFinishLoading(unsigned long, |
84 double, | 84 double, |
85 int64_t, | 85 int64_t, |
(...skipping 21 matching lines...) Expand all Loading... |
107 FetchContext::LogMessageType) const {} | 107 FetchContext::LogMessageType) const {} |
108 | 108 |
109 void FetchContext::populateResourceRequest(Resource::Type, | 109 void FetchContext::populateResourceRequest(Resource::Type, |
110 const ClientHintsPreferences&, | 110 const ClientHintsPreferences&, |
111 const FetchRequest::ResourceWidth&, | 111 const FetchRequest::ResourceWidth&, |
112 ResourceRequest&) {} | 112 ResourceRequest&) {} |
113 | 113 |
114 void FetchContext::setFirstPartyCookieAndRequestorOrigin(ResourceRequest&) {} | 114 void FetchContext::setFirstPartyCookieAndRequestorOrigin(ResourceRequest&) {} |
115 | 115 |
116 } // namespace blink | 116 } // namespace blink |
OLD | NEW |