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

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

Issue 202443003: Revert 169354 "DevTools: track stylesheets by document, not loca..." (Closed) Base URL: svn://svn.chromium.org/blink/
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
97 [CSS, Inline=FastReturn] 94 [CSS, Inline=FastReturn]
98 void willMutateRules(CSSStyleSheet*); 95 void willMutateRules(CSSStyleSheet*);
99 96
100 [CSS, Inline=FastReturn] 97 [CSS, Inline=FastReturn]
101 void didMutateRules([Keep] CSSStyleSheet*); 98 void didMutateRules([Keep] CSSStyleSheet*);
102 99
103 [CSS, Inline=FastReturn] 100 [CSS, Inline=FastReturn]
104 void willMutateStyle(CSSStyleDeclaration*); 101 void willMutateStyle(CSSStyleDeclaration*);
105 102
106 [CSS, Inline=FastReturn] 103 [CSS, Inline=FastReturn]
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 534
538 [Debugger, Inline=FastReturn] 535 [Debugger, Inline=FastReturn]
539 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); 536 void didCreatePromise(ExecutionContext*, const ScriptObject& promise);
540 537
541 [Debugger, Inline=FastReturn] 538 [Debugger, Inline=FastReturn]
542 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise); 539 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise, const ScriptObject& parentPromise);
543 540
544 [Debugger, Inline=FastReturn] 541 [Debugger, Inline=FastReturn]
545 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V 8PromiseCustom::PromiseState, const ScriptValue& result); 542 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V 8PromiseCustom::PromiseState, const ScriptValue& result);
546 } 543 }
OLDNEW
« no previous file with comments | « trunk/Source/core/inspector/InspectorCSSAgent.cpp ('k') | trunk/Source/devtools/front_end/StylesSidebarPane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698