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

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

Issue 667393002: [XHR] No need to remember line number and URL on send() for inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 2 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
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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 [Resource] 310 [Resource]
311 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi gned long identifier, ThreadableLoaderClient* client); 311 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsi gned long identifier, ThreadableLoaderClient* client);
312 312
313 [Debugger, Resource] 313 [Debugger, Resource]
314 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr <FormData>, const HTTPHeaderMap& headers, bool includeCredentials); 314 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr <FormData>, const HTTPHeaderMap& headers, bool includeCredentials);
315 315
316 [Resource] 316 [Resource]
317 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa derClient* client); 317 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa derClient* client);
318 318
319 [Console, Resource] 319 [Console, Resource]
320 void didFinishXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableL oaderClient* client, unsigned long identifier, ScriptString sourceString, const AtomicString& method, const String& url, const String& sendURL, unsigned sendLin eNumber); 320 void didFinishXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableL oaderClient* client, unsigned long identifier, ScriptString sourceString, const AtomicString& method, const String& url);
321 321
322 [Resource] 322 [Resource]
323 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString); 323 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin g& sourceString);
324 324
325 [Debugger] 325 [Debugger]
326 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT ext); 326 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT ext);
327 327
328 [Resource] 328 [Resource]
329 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); 329 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier);
330 330
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
529 interface InspectorCanvasInstrumentation { 529 interface InspectorCanvasInstrumentation {
530 530
531 #include "bindings/core/v8/ScriptValue.h" 531 #include "bindings/core/v8/ScriptValue.h"
532 532
533 [Canvas] 533 [Canvas]
534 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 534 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
535 535
536 [Canvas] 536 [Canvas]
537 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 537 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
538 } 538 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorConsoleAgent.cpp ('k') | Source/core/inspector/InspectorResourceAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698