| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 [Network] | 149 [Network] |
| 150 void applyUserAgentOverride(LocalFrame*, String* userAgent); | 150 void applyUserAgentOverride(LocalFrame*, String* userAgent); |
| 151 | 151 |
| 152 [Network] | 152 [Network] |
| 153 void didBlockRequest([Keep] LocalFrame*, const ResourceRequest&, DocumentLoa
der*, const FetchInitiatorInfo&, ResourceRequestBlockedReason); | 153 void didBlockRequest([Keep] LocalFrame*, const ResourceRequest&, DocumentLoa
der*, const FetchInitiatorInfo&, ResourceRequestBlockedReason); |
| 154 | 154 |
| 155 [Network] | 155 [Network] |
| 156 void didChangeResourcePriority(LocalFrame*, unsigned long identifier, Resour
ceLoadPriority loadPriority); | 156 void didChangeResourcePriority(LocalFrame*, unsigned long identifier, Resour
ceLoadPriority loadPriority); |
| 157 | 157 |
| 158 [Network] | 158 [Network] |
| 159 void willSendRequest([Keep] LocalFrame*, unsigned long identifier, DocumentL
oader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchI
nitiatorInfo&); | 159 void willSendRequest(ExecutionContext*, unsigned long identifier, DocumentLo
ader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchIn
itiatorInfo&, double timestamp, double wallTime); |
| 160 | 160 |
| 161 [Network] | 161 [Network] |
| 162 void markResourceAsCached(LocalFrame*, unsigned long identifier); | 162 void markResourceAsCached(LocalFrame*, unsigned long identifier); |
| 163 | 163 |
| 164 [Network] | 164 [Network] |
| 165 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier
, DocumentLoader*, const ResourceResponse&, Resource*); | 165 void didReceiveResourceResponse([Keep] ExecutionContext*, unsigned long iden
tifier, DocumentLoader*, const ResourceResponse&, Resource*); |
| 166 | 166 |
| 167 [Network] | 167 [Network] |
| 168 void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char
* data, int dataLength); | 168 void didReceiveData(LocalFrame*, unsigned long identifier, const char* data,
int dataLength); |
| 169 | 169 |
| 170 [Network] | 170 [Network] |
| 171 void didReceiveEncodedDataLength([Keep] LocalFrame*, unsigned long identifie
r, int encodedDataLength); | 171 void didReceiveEncodedDataLength([Keep] LocalFrame*, unsigned long identifie
r, int encodedDataLength); |
| 172 | 172 |
| 173 [Network] | 173 [Network] |
| 174 void didFinishLoading(LocalFrame* frame, unsigned long identifier, double fi
nishTime, int64_t encodedDataLength); | 174 void didFinishLoading(ExecutionContext*, unsigned long identifier, double fi
nishTime, int64_t encodedDataLength); |
| 175 | 175 |
| 176 [Network] | 176 [Network] |
| 177 void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identi
fier, DocumentLoader*, const ResourceResponse&, Resource*); | 177 void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identi
fier, DocumentLoader*, const ResourceResponse&, Resource*); |
| 178 | 178 |
| 179 [Network] | 179 [Network] |
| 180 void didFailLoading(LocalFrame* frame, unsigned long identifier, const Resou
rceError&); | 180 void didFailLoading(ExecutionContext*, unsigned long identifier, const Resou
rceError&); |
| 181 | 181 |
| 182 [Network] | 182 [Network] |
| 183 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi
gned long identifier, ThreadableLoaderClient* client); | 183 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi
gned long identifier, ThreadableLoaderClient* client); |
| 184 | 184 |
| 185 [Network] | 185 [Network] |
| 186 void documentThreadableLoaderFailedToStartLoadingForClient(ExecutionContext*
, ThreadableLoaderClient* client); | 186 void documentThreadableLoaderFailedToStartLoadingForClient(ExecutionContext*
, ThreadableLoaderClient* client); |
| 187 | 187 |
| 188 [Network] | 188 [Network] |
| 189 void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* e
ventSource); | 189 void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* e
ventSource); |
| 190 | 190 |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 | 324 |
| 325 [Worker] | 325 [Worker] |
| 326 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context); | 326 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context); |
| 327 | 327 |
| 328 [Network] | 328 [Network] |
| 329 bool shouldForceCORSPreflight(Document*); | 329 bool shouldForceCORSPreflight(Document*); |
| 330 | 330 |
| 331 [Network] | 331 [Network] |
| 332 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&); | 332 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&); |
| 333 } | 333 } |
| OLD | NEW |