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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 [DOM, Inline=FastReturn] | 85 [DOM, Inline=FastReturn] |
86 void didRemoveDOMAttr([Keep] Element*, const AtomicString& name); | 86 void didRemoveDOMAttr([Keep] Element*, const AtomicString& name); |
87 | 87 |
88 [DOM, Inline=FastReturn] | 88 [DOM, Inline=FastReturn] |
89 void characterDataModified([Keep] CharacterData*); | 89 void characterDataModified([Keep] CharacterData*); |
90 | 90 |
91 [DOM, DOMDebugger, Inline=FastReturn] | 91 [DOM, DOMDebugger, Inline=FastReturn] |
92 void didInvalidateStyleAttr([Keep] Node*); | 92 void didInvalidateStyleAttr([Keep] Node*); |
93 | 93 |
| 94 [CSS] |
| 95 void documentDisposed([Keep] Document*); |
| 96 |
94 [CSS, Inline=FastReturn] | 97 [CSS, Inline=FastReturn] |
95 void willMutateRules(CSSStyleSheet*); | 98 void willMutateRules(CSSStyleSheet*); |
96 | 99 |
97 [CSS, Inline=FastReturn] | 100 [CSS, Inline=FastReturn] |
98 void didMutateRules([Keep] CSSStyleSheet*); | 101 void didMutateRules([Keep] CSSStyleSheet*); |
99 | 102 |
100 [CSS, Inline=FastReturn] | 103 [CSS, Inline=FastReturn] |
101 void willMutateStyle(CSSStyleDeclaration*); | 104 void willMutateStyle(CSSStyleDeclaration*); |
102 | 105 |
103 [CSS, Inline=FastReturn] | 106 [CSS, Inline=FastReturn] |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 | 537 |
535 [Debugger, Inline=FastReturn] | 538 [Debugger, Inline=FastReturn] |
536 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); | 539 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); |
537 | 540 |
538 [Debugger, Inline=FastReturn] | 541 [Debugger, Inline=FastReturn] |
539 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); | 542 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); |
540 | 543 |
541 [Debugger, Inline=FastReturn] | 544 [Debugger, Inline=FastReturn] |
542 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); | 545 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); |
543 } | 546 } |
OLD | NEW |