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

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

Issue 1179903003: [DevTools] Log failed XHR requests. (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
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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 [Resource] 272 [Resource]
273 void willDispachEventSourceEvent(ExecutionContext*, ThreadableLoaderClient* eventSource, const AtomicString& eventName, const AtomicString& eventId, const V ector<UChar>& data); 273 void willDispachEventSourceEvent(ExecutionContext*, ThreadableLoaderClient* eventSource, const AtomicString& eventName, const AtomicString& eventId, const V ector<UChar>& data);
274 274
275 [Resource] 275 [Resource]
276 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* eventSource); 276 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* eventSource);
277 277
278 [AsyncCallTracker, Resource] 278 [AsyncCallTracker, Resource]
279 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr <FormData>, const HTTPHeaderMap& headers, bool includeCredentials); 279 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr <FormData>, const HTTPHeaderMap& headers, bool includeCredentials);
280 280
281 [Resource] 281 [Resource]
282 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa derClient* client); 282 void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thread ableLoaderClient* client, const AtomicString& method, const String& url);
283 283
284 [Resource] 284 [Resource]
285 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thre adableLoaderClient* client, unsigned long identifier, ScriptString sourceString, const AtomicString& method, const String& url); 285 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thre adableLoaderClient* client, const AtomicString& method, const String& url);
286 286
287 [Resource] 287 [Resource]
288 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString); 288 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString);
289 289
290 [Debugger] 290 [Debugger]
291 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT ext); 291 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT ext);
292 292
293 [Resource] 293 [Resource]
294 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); 294 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier);
295 295
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 interface InspectorOverrides { 448 interface InspectorOverrides {
449 [CSS, Inline=FastReturn] 449 [CSS, Inline=FastReturn]
450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState); 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud oState);
451 451
452 [Worker, Inline=FastReturn] 452 [Worker, Inline=FastReturn]
453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context);
454 454
455 [Resource, Inline=FastReturn] 455 [Resource, Inline=FastReturn]
456 bool shouldForceCORSPreflight(Document*); 456 bool shouldForceCORSPreflight(Document*);
457 } 457 }
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/inspector/console-xhr-logging-expected.txt ('k') | Source/core/inspector/InspectorResourceAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698