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

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

Issue 118293002: DevTools: Support XHR async call stacks in the debugger. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: split tests Created 7 years 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 311
312 [Resource] 312 [Resource]
313 void didReceiveCORSRedirectResponse([Keep] Frame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*); 313 void didReceiveCORSRedirectResponse([Keep] Frame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
314 314
315 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this. 315 [Timeline, Resource, Console] // Console should come AFTER Resource notifica tion, front-end relies on this.
316 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*, const ResourceError&); 316 void didFailLoading(Frame* frame, unsigned long identifier, DocumentLoader*, const ResourceError&);
317 317
318 [Resource] 318 [Resource]
319 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi gned long identifier, ThreadableLoaderClient* client); 319 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi gned long identifier, ThreadableLoaderClient* client);
320 320
321 [Resource] 321 [Debugger, Resource]
322 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr <FormData>, const HTTPHeaderMap& headers, bool includeCredentials); 322 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr <FormData>, const HTTPHeaderMap& headers, bool includeCredentials);
323 323
324 [Resource] 324 [Resource]
325 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa derClient* client); 325 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa derClient* client);
326 326
327 [Console, Resource] 327 [Console, Resource]
328 void didFinishXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableL oaderClient* client, unsigned long identifier, ScriptString sourceString, const String& url, const String& sendURL, unsigned sendLineNumber); 328 void didFinishXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableL oaderClient* client, unsigned long identifier, ScriptString sourceString, const String& url, const String& sendURL, unsigned sendLineNumber);
329 329
330 [Resource] 330 [Resource]
331 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString); 331 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString);
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 interface InspectorCanvasInstrumentation { 528 interface InspectorCanvasInstrumentation {
529 529
530 #include "bindings/v8/ScriptObject.h" 530 #include "bindings/v8/ScriptObject.h"
531 531
532 [Canvas] 532 [Canvas]
533 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 533 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
534 534
535 [Canvas] 535 [Canvas]
536 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 536 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
537 } 537 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698