| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 [Resource] | 297 [Resource] |
| 298 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); | 298 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); |
| 299 | 299 |
| 300 [Console, Resource] | 300 [Console, Resource] |
| 301 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, ScriptString sourceString, const String& url, co
nst String& sendURL, unsigned sendLineNumber); | 301 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, ScriptString sourceString, const String& url, co
nst String& sendURL, unsigned sendLineNumber); |
| 302 | 302 |
| 303 [Resource] | 303 [Resource] |
| 304 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); | 304 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); |
| 305 | 305 |
| 306 [Resource] | 306 [Resource] |
| 307 void willLoadXHRSynchronously(ScriptExecutionContext*); | |
| 308 | |
| 309 [Resource] | |
| 310 void didLoadXHRSynchronously(ScriptExecutionContext*); | |
| 311 | |
| 312 [Resource] | |
| 313 void scriptImported(ScriptExecutionContext*, unsigned long identifier, const
String& sourceString); | 307 void scriptImported(ScriptExecutionContext*, unsigned long identifier, const
String& sourceString); |
| 314 | 308 |
| 315 [Debugger] | 309 [Debugger] |
| 316 void scriptExecutionBlockedByCSP(ScriptExecutionContext*, const String& dire
ctiveText); | 310 void scriptExecutionBlockedByCSP(ScriptExecutionContext*, const String& dire
ctiveText); |
| 317 | 311 |
| 318 [Resource] | 312 [Resource] |
| 319 void didReceiveScriptResponse(ScriptExecutionContext*, unsigned long identif
ier); | 313 void didReceiveScriptResponse(ScriptExecutionContext*, unsigned long identif
ier); |
| 320 | 314 |
| 321 [Timeline, Inspector, DOM, Page] | 315 [Timeline, Inspector, DOM, Page] |
| 322 void domContentLoadedEventFired([Keep] Frame*); | 316 void domContentLoadedEventFired([Keep] Frame*); |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 interface InspectorCanvasInstrumentation { | 502 interface InspectorCanvasInstrumentation { |
| 509 | 503 |
| 510 #include "bindings/v8/ScriptObject.h" | 504 #include "bindings/v8/ScriptObject.h" |
| 511 | 505 |
| 512 [Canvas] | 506 [Canvas] |
| 513 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 507 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 514 | 508 |
| 515 [Canvas] | 509 [Canvas] |
| 516 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 510 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 517 } | 511 } |
| OLD | NEW |