Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 201363002: DevTools: defer styles delta calculation to until the end of the task. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698