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

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

Issue 1315043008: [DevTools] Show blocked requests in Network panel. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 3 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 [Resource, Page, Inline=FastReturn] 215 [Resource, Page, Inline=FastReturn]
216 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC ount); 216 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC ount);
217 217
218 [Resource, Inline=FastReturn] 218 [Resource, Inline=FastReturn]
219 void didScheduleStyleRecalculation([Keep] Document*); 219 void didScheduleStyleRecalculation([Keep] Document*);
220 220
221 [Resource, Inline=FastReturn] 221 [Resource, Inline=FastReturn]
222 void applyUserAgentOverride(LocalFrame*, String* userAgent); 222 void applyUserAgentOverride(LocalFrame*, String* userAgent);
223 223
224 [Resource] 224 [Resource]
225 void didBlockRequest([Keep] LocalFrame*, const ResourceRequest&, DocumentLoa der*, const FetchInitiatorInfo&, ResourceRequestBlockedReason);
226
227 [Resource]
225 void willSendRequest([Keep] LocalFrame*, unsigned long identifier, DocumentL oader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchI nitiatorInfo&); 228 void willSendRequest([Keep] LocalFrame*, unsigned long identifier, DocumentL oader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchI nitiatorInfo&);
226 229
227 [Resource] 230 [Resource]
228 void markResourceAsCached(LocalFrame*, unsigned long identifier); 231 void markResourceAsCached(LocalFrame*, unsigned long identifier);
229 232
230 [Resource] 233 [Resource]
231 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier , DocumentLoader*, const ResourceResponse&, ResourceLoader*); 234 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier , DocumentLoader*, const ResourceResponse&, ResourceLoader*);
232 235
233 [Inline=Forward] 236 [Inline=Forward]
234 void continueAfterXFrameOptionsDenied(LocalFrame* frame, DocumentLoader* loa der, unsigned long identifier, const ResourceResponse& r); 237 void continueAfterXFrameOptionsDenied(LocalFrame* frame, DocumentLoader* loa der, unsigned long identifier, const ResourceResponse& r);
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 interface InspectorOverrides { 445 interface InspectorOverrides {
443 [CSS, Inline=FastReturn] 446 [CSS, Inline=FastReturn]
444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
445 448
446 [Worker, Inline=FastReturn] 449 [Worker, Inline=FastReturn]
447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
448 451
449 [Resource, Inline=FastReturn] 452 [Resource, Inline=FastReturn]
450 bool shouldForceCORSPreflight(Document*); 453 bool shouldForceCORSPreflight(Document*);
451 } 454 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.h ('k') | Source/core/inspector/InspectorResourceAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698