| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 * | 61 * |
| 62 * Parameters with type PassRefPtr<T> are converted to raw pointers, | 62 * Parameters with type PassRefPtr<T> are converted to raw pointers, |
| 63 * so reference will not be passed or released until all agents are notified. | 63 * so reference will not be passed or released until all agents are notified. |
| 64 */ | 64 */ |
| 65 | 65 |
| 66 interface InspectorInstrumentation { | 66 interface InspectorInstrumentation { |
| 67 | 67 |
| 68 #include "core/dom/PseudoElement.h" | 68 #include "core/dom/PseudoElement.h" |
| 69 | 69 |
| 70 // We should call PageDebuggerAgent method first otherwise this method reset
s script cache and removes scripts executed by other agents. | 70 // We should call PageDebuggerAgent method first otherwise this method reset
s script cache and removes scripts executed by other agents. |
| 71 [PageDebugger, Page, Inspector, PageRuntime] | 71 [PageDebugger, Page, PageRuntime] |
| 72 void didClearDocumentOfWindowObject([Keep] LocalFrame*); | 72 void didClearDocumentOfWindowObject([Keep] LocalFrame*); |
| 73 | 73 |
| 74 [DOMDebugger, Inline=FastReturn] | 74 [DOMDebugger, Inline=FastReturn] |
| 75 void willCloseWindow(ExecutionContext*); | 75 void willCloseWindow(ExecutionContext*); |
| 76 | 76 |
| 77 [DOMDebugger, Inline=FastReturn] | 77 [DOMDebugger, Inline=FastReturn] |
| 78 void willInsertDOMNode([Keep] Node* parent); | 78 void willInsertDOMNode([Keep] Node* parent); |
| 79 | 79 |
| 80 [DOM, DOMDebugger, Inline=FastReturn] | 80 [DOM, DOMDebugger, Inline=FastReturn] |
| 81 void didInsertDOMNode([Keep] Node*); | 81 void didInsertDOMNode([Keep] Node*); |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 interface InspectorCanvasInstrumentation { | 530 interface InspectorCanvasInstrumentation { |
| 531 | 531 |
| 532 #include "bindings/core/v8/ScriptValue.h" | 532 #include "bindings/core/v8/ScriptValue.h" |
| 533 | 533 |
| 534 [Canvas] | 534 [Canvas] |
| 535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 536 | 536 |
| 537 [Canvas] | 537 [Canvas] |
| 538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 539 } | 539 } |
| OLD | NEW |