| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 [Resource] | 284 [Resource] |
| 285 void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext*
, unsigned long identifier, ThreadableLoaderClient* client); | 285 void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext*
, unsigned long identifier, ThreadableLoaderClient* client); |
| 286 | 286 |
| 287 [Resource] | 287 [Resource] |
| 288 void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient* client, co
nst String& method, const KURL& url, bool async, PassRefPtr<FormData>, const HTT
PHeaderMap& headers, bool includeCredentials); | 288 void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient* client, co
nst String& method, const KURL& url, bool async, PassRefPtr<FormData>, const HTT
PHeaderMap& headers, bool includeCredentials); |
| 289 | 289 |
| 290 [Resource] | 290 [Resource] |
| 291 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); | 291 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); |
| 292 | 292 |
| 293 [Console, Resource] | 293 [Console, Resource] |
| 294 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, const String& sourceString, const String& url, c
onst String& sendURL, unsigned sendLineNumber); | 294 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, ScriptString sourceString, const String& url, co
nst String& sendURL, unsigned sendLineNumber); |
| 295 | 295 |
| 296 [Resource] | 296 [Resource] |
| 297 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); | 297 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); |
| 298 | 298 |
| 299 [Resource] | 299 [Resource] |
| 300 void willLoadXHRSynchronously(ScriptExecutionContext*); | 300 void willLoadXHRSynchronously(ScriptExecutionContext*); |
| 301 | 301 |
| 302 [Resource] | 302 [Resource] |
| 303 void didLoadXHRSynchronously(ScriptExecutionContext*); | 303 void didLoadXHRSynchronously(ScriptExecutionContext*); |
| 304 | 304 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 interface InspectorCanvasInstrumentation { | 493 interface InspectorCanvasInstrumentation { |
| 494 | 494 |
| 495 #include "bindings/v8/ScriptObject.h" | 495 #include "bindings/v8/ScriptObject.h" |
| 496 | 496 |
| 497 [Canvas] | 497 [Canvas] |
| 498 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 498 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 499 | 499 |
| 500 [Canvas] | 500 [Canvas] |
| 501 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 501 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 502 } | 502 } |
| OLD | NEW |