| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 void didUpdateLayerTree(LocalFrame*); | 447 void didUpdateLayerTree(LocalFrame*); |
| 448 | 448 |
| 449 [DOM, Inline=FastReturn] | 449 [DOM, Inline=FastReturn] |
| 450 void pseudoElementCreated([Keep] PseudoElement*); | 450 void pseudoElementCreated([Keep] PseudoElement*); |
| 451 | 451 |
| 452 [DOM, Inline=FastReturn] | 452 [DOM, Inline=FastReturn] |
| 453 void pseudoElementDestroyed([Keep] PseudoElement*); | 453 void pseudoElementDestroyed([Keep] PseudoElement*); |
| 454 | 454 |
| 455 [DOMDebugger, Inline=FastReturn] | 455 [DOMDebugger, Inline=FastReturn] |
| 456 void willExecuteCustomElementCallback([Keep] Element*); | 456 void willExecuteCustomElementCallback([Keep] Element*); |
| 457 |
| 458 [Debugger, Inline=FastReturn] |
| 459 int traceAsyncOperationStarting([Keep] ExecutionContext*, const String& oper
ationName); |
| 460 |
| 461 [Debugger, Inline=FastReturn] |
| 462 void traceAsyncOperationCompleted([Keep] ExecutionContext*, int operationId)
; |
| 463 |
| 464 [Debugger, Inline=FastReturn] |
| 465 InspectorInstrumentationCookie traceAsyncOperationCompletedCallbackStarting(
[Keep] ExecutionContext*, int operationId); |
| 466 |
| 467 [Debugger, Inline=FastReturn] |
| 468 InspectorInstrumentationCookie traceAsyncCallbackStarting([Keep] ExecutionCo
ntext*, int operationId); |
| 469 |
| 470 [Debugger, Inline=FastReturn] |
| 471 void traceAsyncCallbackCompleted(const InspectorInstrumentationCookie&); |
| 457 } | 472 } |
| 458 | 473 |
| 459 interface InspectorConsoleInstrumentation { | 474 interface InspectorConsoleInstrumentation { |
| 460 | 475 |
| 461 #include "core/inspector/ScriptArguments.h" | 476 #include "core/inspector/ScriptArguments.h" |
| 462 #include "core/inspector/ScriptCallStack.h" | 477 #include "core/inspector/ScriptCallStack.h" |
| 463 | 478 |
| 464 // FIXME: Convert to ScriptArguments to match non-worker context. | 479 // FIXME: Convert to ScriptArguments to match non-worker context. |
| 465 // Use the same implementation as above as a similar method dispatched on Pa
ge. | 480 // Use the same implementation as above as a similar method dispatched on Pa
ge. |
| 466 [Console] | 481 [Console] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 interface InspectorCanvasInstrumentation { | 525 interface InspectorCanvasInstrumentation { |
| 511 | 526 |
| 512 #include "bindings/core/v8/ScriptValue.h" | 527 #include "bindings/core/v8/ScriptValue.h" |
| 513 | 528 |
| 514 [Canvas] | 529 [Canvas] |
| 515 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 530 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 516 | 531 |
| 517 [Canvas] | 532 [Canvas] |
| 518 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 533 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 519 } | 534 } |
| OLD | NEW |