| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 | 308 |
| 309 [Resource] | 309 [Resource] |
| 310 void didReceiveCORSRedirectResponse([Keep] Frame*, unsigned long identifier,
DocumentLoader*, const ResourceResponse&, ResourceLoader*); | 310 void didReceiveCORSRedirectResponse([Keep] Frame*, unsigned long identifier,
DocumentLoader*, const ResourceResponse&, ResourceLoader*); |
| 311 | 311 |
| 312 [Timeline, Resource, Console] // Console should come AFTER Resource notifica
tion, front-end relies on this. | 312 [Timeline, Resource, Console] // Console should come AFTER Resource notifica
tion, front-end relies on this. |
| 313 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*,
const ResourceError&); | 313 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*,
const ResourceError&); |
| 314 | 314 |
| 315 [Resource] | 315 [Resource] |
| 316 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi
gned long identifier, ThreadableLoaderClient* client); | 316 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi
gned long identifier, ThreadableLoaderClient* client); |
| 317 | 317 |
| 318 [Resource] | 318 [Debugger, Resource] |
| 319 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli
ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr
<FormData>, const HTTPHeaderMap& headers, bool includeCredentials); | 319 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli
ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr
<FormData>, const HTTPHeaderMap& headers, bool includeCredentials); |
| 320 | 320 |
| 321 [Resource] | 321 [Resource] |
| 322 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa
derClient* client); | 322 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa
derClient* client); |
| 323 | 323 |
| 324 [Console, Resource] | 324 [Console, Resource] |
| 325 void didFinishXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableL
oaderClient* client, unsigned long identifier, ScriptString sourceString, const
String& url, const String& sendURL, unsigned sendLineNumber); | 325 void didFinishXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableL
oaderClient* client, unsigned long identifier, ScriptString sourceString, const
String& url, const String& sendURL, unsigned sendLineNumber); |
| 326 | 326 |
| 327 [Resource] | 327 [Resource] |
| 328 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin
g& sourceString); | 328 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin
g& sourceString); |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 interface InspectorCanvasInstrumentation { | 525 interface InspectorCanvasInstrumentation { |
| 526 | 526 |
| 527 #include "bindings/v8/ScriptObject.h" | 527 #include "bindings/v8/ScriptObject.h" |
| 528 | 528 |
| 529 [Canvas] | 529 [Canvas] |
| 530 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 530 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 531 | 531 |
| 532 [Canvas] | 532 [Canvas] |
| 533 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 533 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 534 } | 534 } |
| OLD | NEW |