| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 [DOM, DOMDebugger, Inline=FastReturn] | 80 [DOM, DOMDebugger, Inline=FastReturn] |
| 81 void didInsertDOMNode([Keep] Node*); | 81 void didInsertDOMNode([Keep] Node*); |
| 82 | 82 |
| 83 [DOMDebugger, DOM, Inline=FastReturn] | 83 [DOMDebugger, DOM, Inline=FastReturn] |
| 84 void willRemoveDOMNode([Keep] Node*); | 84 void willRemoveDOMNode([Keep] Node*); |
| 85 | 85 |
| 86 [DOMDebugger, DOM, Inline=FastReturn] | 86 [DOMDebugger, DOM, Inline=FastReturn] |
| 87 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const
AtomicString& newValue); | 87 void willModifyDOMAttr([Keep] Element*, const AtomicString& oldValue, const
AtomicString& newValue); |
| 88 | 88 |
| 89 [DOM, Inline=FastReturn] | 89 [DOM, Inline=FastReturn] |
| 90 void didModifyDOMAttr([Keep] Element*, const String& name, const AtomicStrin
g& value); | 90 void didModifyDOMAttr([Keep] Element*, const QualifiedName& name, const Atom
icString& value); |
| 91 | 91 |
| 92 [DOM, Inline=FastReturn] | 92 [DOM, Inline=FastReturn] |
| 93 void didRemoveDOMAttr([Keep] Element*, const String& name); | 93 void didRemoveDOMAttr([Keep] Element*, const QualifiedName& name); |
| 94 | 94 |
| 95 [DOM, Inline=FastReturn] | 95 [DOM, Inline=FastReturn] |
| 96 void characterDataModified([Keep] CharacterData*); | 96 void characterDataModified([Keep] CharacterData*); |
| 97 | 97 |
| 98 [DOM, DOMDebugger, Inline=FastReturn] | 98 [DOM, DOMDebugger, Inline=FastReturn] |
| 99 void didInvalidateStyleAttr([Keep] Node*); | 99 void didInvalidateStyleAttr([Keep] Node*); |
| 100 | 100 |
| 101 [DOM, Inline=FastReturn] | 101 [DOM, Inline=FastReturn] |
| 102 void didPerformElementShadowDistribution([Keep] Element*); | 102 void didPerformElementShadowDistribution([Keep] Element*); |
| 103 | 103 |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 interface InspectorCanvasInstrumentation { | 527 interface InspectorCanvasInstrumentation { |
| 528 | 528 |
| 529 #include "bindings/core/v8/ScriptValue.h" | 529 #include "bindings/core/v8/ScriptValue.h" |
| 530 | 530 |
| 531 [Canvas] | 531 [Canvas] |
| 532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 532 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 533 | 533 |
| 534 [Canvas] | 534 [Canvas] |
| 535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 535 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 536 } | 536 } |
| OLD | NEW |