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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 [Page, Inspector, PageDebugger, PageRuntime] | 70 [Page, Inspector, PageDebugger, PageRuntime] |
71 void didClearDocumentOfWindowObject([Keep] LocalFrame*); | 71 void didClearDocumentOfWindowObject([Keep] LocalFrame*); |
72 | 72 |
73 [DOMDebugger, Inline=FastReturn] | 73 [DOMDebugger, Inline=FastReturn] |
| 74 void willCloseWindow(ExecutionContext*); |
| 75 |
| 76 [DOMDebugger, Inline=FastReturn] |
74 void willInsertDOMNode([Keep] Node* parent); | 77 void willInsertDOMNode([Keep] Node* parent); |
75 | 78 |
76 [DOM, DOMDebugger, Inline=FastReturn] | 79 [DOM, DOMDebugger, Inline=FastReturn] |
77 void didInsertDOMNode([Keep] Node*); | 80 void didInsertDOMNode([Keep] Node*); |
78 | 81 |
79 [DOMDebugger, DOM, Inline=FastReturn] | 82 [DOMDebugger, DOM, Inline=FastReturn] |
80 void willRemoveDOMNode([Keep] Node*); | 83 void willRemoveDOMNode([Keep] Node*); |
81 | 84 |
82 [DOMDebugger, DOM, Inline=FastReturn] | 85 [DOMDebugger, DOM, Inline=FastReturn] |
83 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const
AtomicString& newValue); | 86 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const
AtomicString& newValue); |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 interface InspectorCanvasInstrumentation { | 510 interface InspectorCanvasInstrumentation { |
508 | 511 |
509 #include "bindings/core/v8/ScriptValue.h" | 512 #include "bindings/core/v8/ScriptValue.h" |
510 | 513 |
511 [Canvas] | 514 [Canvas] |
512 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 515 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
513 | 516 |
514 [Canvas] | 517 [Canvas] |
515 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 518 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
516 } | 519 } |
OLD | NEW |