| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 [Resource] | 300 [Resource] |
| 301 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); | 301 void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* clie
nt); |
| 302 | 302 |
| 303 [Console, Resource] | 303 [Console, Resource] |
| 304 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, ScriptString sourceString, const String& url, co
nst String& sendURL, unsigned sendLineNumber); | 304 void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient* cl
ient, unsigned long identifier, ScriptString sourceString, const String& url, co
nst String& sendURL, unsigned sendLineNumber); |
| 305 | 305 |
| 306 [Resource] | 306 [Resource] |
| 307 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); | 307 void didReceiveXHRResponse(ScriptExecutionContext*, unsigned long identifier
); |
| 308 | 308 |
| 309 [Resource] | 309 [Resource] |
| 310 void willLoadXHRSynchronously(ScriptExecutionContext*); | |
| 311 | |
| 312 [Resource] | |
| 313 void didLoadXHRSynchronously(ScriptExecutionContext*); | |
| 314 | |
| 315 [Resource] | |
| 316 void scriptImported(ScriptExecutionContext*, unsigned long identifier, const
String& sourceString); | 310 void scriptImported(ScriptExecutionContext*, unsigned long identifier, const
String& sourceString); |
| 317 | 311 |
| 318 [Debugger] | 312 [Debugger] |
| 319 void scriptExecutionBlockedByCSP(ScriptExecutionContext*, const String& dire
ctiveText); | 313 void scriptExecutionBlockedByCSP(ScriptExecutionContext*, const String& dire
ctiveText); |
| 320 | 314 |
| 321 [Resource] | 315 [Resource] |
| 322 void didReceiveScriptResponse(ScriptExecutionContext*, unsigned long identif
ier); | 316 void didReceiveScriptResponse(ScriptExecutionContext*, unsigned long identif
ier); |
| 323 | 317 |
| 324 [Timeline, Inspector, DOM, Page] | 318 [Timeline, Inspector, DOM, Page] |
| 325 void domContentLoadedEventFired([Keep] Frame*); | 319 void domContentLoadedEventFired([Keep] Frame*); |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 interface InspectorCanvasInstrumentation { | 514 interface InspectorCanvasInstrumentation { |
| 521 | 515 |
| 522 #include "bindings/v8/ScriptObject.h" | 516 #include "bindings/v8/ScriptObject.h" |
| 523 | 517 |
| 524 [Canvas] | 518 [Canvas] |
| 525 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 519 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 526 | 520 |
| 527 [Canvas] | 521 [Canvas] |
| 528 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 522 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 529 } | 523 } |
| OLD | NEW |