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

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

Issue 1212373003: Devtools [LayouEditor]: Show label with size info (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address comments Created 5 years, 5 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
« no previous file with comments | « no previous file | Source/core/inspector/InspectorOverlayPage.html » ('j') | 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 [AsyncCallTracker, Inline=FastReturn] 209 [AsyncCallTracker, Inline=FastReturn]
210 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); 210 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*);
211 211
212 [LayerTree, Inline=FastReturn] 212 [LayerTree, Inline=FastReturn]
213 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&); 213 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
214 214
215 [Resource, Inline=FastReturn] 215 [Resource, Inline=FastReturn]
216 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*); 216 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*);
217 217
218 [Resource, Page, Inline=FastReturn] 218 [Resource, Inline=FastReturn]
219 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC ount); 219 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC ount);
220 220
221 [Resource, Inline=FastReturn] 221 [Resource, Inline=FastReturn]
222 void didScheduleStyleRecalculation([Keep] Document*); 222 void didScheduleStyleRecalculation([Keep] Document*);
223 223
224 [Resource, Inline=FastReturn] 224 [Resource, Inline=FastReturn]
225 void applyUserAgentOverride(LocalFrame*, String* userAgent); 225 void applyUserAgentOverride(LocalFrame*, String* userAgent);
226 226
227 [Resource] 227 [Resource]
228 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato rInfo&); 228 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato rInfo&);
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 interface InspectorOverrides { 436 interface InspectorOverrides {
437 [CSS, Inline=FastReturn] 437 [CSS, Inline=FastReturn]
438 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 438 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
439 439
440 [Worker, Inline=FastReturn] 440 [Worker, Inline=FastReturn]
441 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 441 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
442 442
443 [Resource, Inline=FastReturn] 443 [Resource, Inline=FastReturn]
444 bool shouldForceCORSPreflight(Document*); 444 bool shouldForceCORSPreflight(Document*);
445 } 445 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorOverlayPage.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698