| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {} | 83 void FetchContext::dispatchDidDownloadData(unsigned long, int, int) {} |
| 84 | 84 |
| 85 void FetchContext::dispatchDidFinishLoading(unsigned long, double, int64_t) {} | 85 void FetchContext::dispatchDidFinishLoading(unsigned long, double, int64_t) {} |
| 86 | 86 |
| 87 void FetchContext::dispatchDidFail(unsigned long, | 87 void FetchContext::dispatchDidFail(unsigned long, |
| 88 const ResourceError&, | 88 const ResourceError&, |
| 89 int64_t, | 89 int64_t, |
| 90 bool) {} | 90 bool) {} |
| 91 | 91 |
| 92 void FetchContext::willStartLoadingResource(unsigned long, | 92 void FetchContext::willStartLoadingResource( |
| 93 ResourceRequest&, | 93 unsigned long, |
| 94 Resource::Type) {} | 94 ResourceRequest&, |
| 95 Resource::Type, |
| 96 const AtomicString& fetchInitiatorName, |
| 97 bool) {} |
| 95 | 98 |
| 96 void FetchContext::didLoadResource(Resource*) {} | 99 void FetchContext::didLoadResource(Resource*) {} |
| 97 | 100 |
| 98 void FetchContext::addResourceTiming(const ResourceTimingInfo&) {} | 101 void FetchContext::addResourceTiming(const ResourceTimingInfo&) {} |
| 99 | 102 |
| 100 void FetchContext::sendImagePing(const KURL&) {} | 103 void FetchContext::sendImagePing(const KURL&) {} |
| 101 | 104 |
| 102 void FetchContext::addConsoleMessage(const String&, | 105 void FetchContext::addConsoleMessage(const String&, |
| 103 FetchContext::LogMessageType) const {} | 106 FetchContext::LogMessageType) const {} |
| 104 | 107 |
| 105 void FetchContext::modifyRequestForCSP(ResourceRequest&) {} | 108 void FetchContext::modifyRequestForCSP(ResourceRequest&) {} |
| 106 | 109 |
| 107 void FetchContext::addClientHintsIfNecessary(FetchRequest&) {} | 110 void FetchContext::addClientHintsIfNecessary(FetchRequest&) {} |
| 108 | 111 |
| 109 void FetchContext::addCSPHeaderIfNecessary(Resource::Type, FetchRequest&) {} | 112 void FetchContext::addCSPHeaderIfNecessary(Resource::Type, FetchRequest&) {} |
| 110 | 113 |
| 111 void FetchContext::populateRequestData(ResourceRequest&) {} | 114 void FetchContext::populateRequestData(ResourceRequest&) {} |
| 112 | 115 |
| 113 } // namespace blink | 116 } // namespace blink |
| OLD | NEW |