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

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

Issue 1206573002: DevTools: remove unused parts of the CSS instrumentation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
104 [CSS] 104 [CSS]
105 void documentDetached([Keep] Document*); 105 void documentDetached([Keep] Document*);
106 106
107 [CSS, Inline=FastReturn] 107 [CSS, Inline=FastReturn]
108 void willMutateRules(CSSStyleSheet*);
109
110 [CSS, Inline=FastReturn]
111 void didMutateRules([Keep] CSSStyleSheet*);
112
113 [CSS, Inline=FastReturn]
114 void willMutateStyle(CSSStyleDeclaration*);
115
116 [CSS, Inline=FastReturn]
117 void didMutateStyle([Keep] CSSStyleDeclaration*, bool);
118
119 [CSS, Inline=FastReturn]
120 void activeStyleSheetsUpdated([Keep] Document*); 108 void activeStyleSheetsUpdated([Keep] Document*);
121 109
122 [CSS, Inline=FastReturn] 110 [CSS, Inline=FastReturn]
123 void mediaQueryResultChanged(Document*); 111 void mediaQueryResultChanged(Document*);
124 112
125 [DOM, Inline=FastReturn] 113 [DOM, Inline=FastReturn]
126 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); 114 void didPushShadowRoot([Keep] Element* host, ShadowRoot*);
127 115
128 [DOM, Inline=FastReturn] 116 [DOM, Inline=FastReturn]
129 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); 117 void willPopShadowRoot([Keep] Element* host, ShadowRoot*);
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 interface InspectorOverrides { 436 interface InspectorOverrides {
449 [CSS, Inline=FastReturn] 437 [CSS, Inline=FastReturn]
450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 438 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
451 439
452 [Worker, Inline=FastReturn] 440 [Worker, Inline=FastReturn]
453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 441 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
454 442
455 [Resource, Inline=FastReturn] 443 [Resource, Inline=FastReturn]
456 bool shouldForceCORSPreflight(Document*); 444 bool shouldForceCORSPreflight(Document*);
457 } 445 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698