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

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

Issue 2620463002: Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: incorporated falken's comment Created 3 years, 11 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: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
index 768c6b085953d0f82e72592810ce4717db57d6a2..f4dccb35625f2bfd321f3376cb9664a82324b7c1 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
@@ -316,6 +316,18 @@ class XMLHttpRequest;
[Page]
void didRunJavaScriptDialog(LocalFrame* frame, bool result);
+
+ [Network]
+ void didSendNavigationPreload(ExecutionContext*, int identifier, const KURL& requestURL, double timestamp, double wallTime);
+
+ [Network]
+ void didReceiveNavigationPreloadResponse(ExecutionContext*, int identifier, const ResourceResponse&);
+
+ [Network]
+ void didReceiveNavigationPreloadError(ExecutionContext*, int identifier, const String& errorMessage);
+
+ [Network]
+ void didCompleteNavigationPreload(ExecutionContext*, int identifier);
}
interface InspectorOverrides {

Powered by Google App Engine
This is Rietveld 408576698