| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 | 205 |
| 206 [Network] | 206 [Network] |
| 207 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); | 207 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); |
| 208 | 208 |
| 209 [Network] | 209 [Network] |
| 210 void didFailFetch(ExecutionContext*, ThreadableLoaderClient*); | 210 void didFailFetch(ExecutionContext*, ThreadableLoaderClient*); |
| 211 | 211 |
| 212 [Network] | 212 [Network] |
| 213 void didFinishFetch([Keep] ExecutionContext*, ThreadableLoaderClient*, const
AtomicString& method, const String& url); | 213 void didFinishFetch([Keep] ExecutionContext*, ThreadableLoaderClient*, const
AtomicString& method, const String& url); |
| 214 | 214 |
| 215 // Detach and remove all references to the given client. |
| 216 [Network] |
| 217 void detachClientRequest(ExecutionContext*, ThreadableLoaderClient*); |
| 218 |
| 215 [Network] | 219 [Network] |
| 216 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin
g& sourceString); | 220 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin
g& sourceString); |
| 217 | 221 |
| 218 [DOMDebugger] | 222 [DOMDebugger] |
| 219 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT
ext); | 223 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT
ext); |
| 220 | 224 |
| 221 [Network] | 225 [Network] |
| 222 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); | 226 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); |
| 223 | 227 |
| 224 [DOM, Page] | 228 [DOM, Page] |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 | 328 |
| 325 [Worker] | 329 [Worker] |
| 326 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context); | 330 bool shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context); |
| 327 | 331 |
| 328 [Network] | 332 [Network] |
| 329 bool shouldForceCORSPreflight(Document*); | 333 bool shouldForceCORSPreflight(Document*); |
| 330 | 334 |
| 331 [Network] | 335 [Network] |
| 332 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&); | 336 bool shouldBlockRequest(LocalFrame*, const ResourceRequest&); |
| 333 } | 337 } |
| OLD | NEW |