| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 WebCachePolicy FetchContext::resourceRequestCachePolicy( | 53 WebCachePolicy FetchContext::resourceRequestCachePolicy( |
| 54 ResourceRequest&, | 54 ResourceRequest&, |
| 55 Resource::Type, | 55 Resource::Type, |
| 56 FetchRequest::DeferOption defer) const { | 56 FetchRequest::DeferOption defer) const { |
| 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 const 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 Resource*, |
| 68 WebURLRequest::FrameType, | 68 WebURLRequest::FrameType, |
| 69 WebURLRequest::RequestContext) {} | 69 WebURLRequest::RequestContext) {} |
| 70 | 70 |
| 71 void FetchContext::dispatchDidReceiveResponse(unsigned long, | 71 void FetchContext::dispatchDidReceiveResponse(unsigned long, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |