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

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 1259393002: DevTools: add support for logging fetch requests when XHR logging is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed the test 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/inspector/InspectorInstrumentation.idl
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
index b896315913e652c90571405277890d375af2ee40..601f221c7d14d4d5c09767b2a29150905c8b045d 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -273,6 +273,15 @@ interface InspectorInstrumentation {
void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const String& url);
[Resource]
+ void willStartFetch(ExecutionContext*, ThreadableLoaderClient*);
+
+ [Resource]
+ void didFailFetch(ExecutionContext*, ThreadableLoaderClient*);
+
+ [Resource]
+ void didFinishFetch([Keep] ExecutionContext*, ThreadableLoaderClient*, const AtomicString& method, const String& url);
+
+ [Resource]
void scriptImported(ExecutionContext*, unsigned long identifier, const String& sourceString);
[Debugger]
« no previous file with comments | « LayoutTests/http/tests/inspector/network/resources/event-stream.asis ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698