| 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, PageRuntime] | 71 [PageDebugger, Page, PageRuntime, Animation] |
| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 interface InspectorOverrides { | 451 interface InspectorOverrides { |
| 452 [CSS, Inline=FastReturn] | 452 [CSS, Inline=FastReturn] |
| 453 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 453 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 454 | 454 |
| 455 [Worker, Inline=FastReturn] | 455 [Worker, Inline=FastReturn] |
| 456 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 456 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 457 | 457 |
| 458 [Resource, Inline=FastReturn] | 458 [Resource, Inline=FastReturn] |
| 459 bool shouldForceCORSPreflight(Document*); | 459 bool shouldForceCORSPreflight(Document*); |
| 460 } | 460 } |
| OLD | NEW |