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

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: fix crash 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..2a85e901a504b90dd2ce0d4196bf119139c3e210 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
@@ -156,28 +156,28 @@ class XMLHttpRequest;
void didChangeResourcePriority(LocalFrame*, unsigned long identifier, ResourceLoadPriority loadPriority);
[Network]
- void willSendRequest([Keep] LocalFrame*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
+ void willSendRequest(ExecutionContext*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
[Network]
void markResourceAsCached(LocalFrame*, unsigned long identifier);
[Network]
- void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, Resource*);
+ void didReceiveResourceResponse([Keep] ExecutionContext*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, Resource*);
[Network]
- void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char* data, int dataLength);
+ void didReceiveData(LocalFrame*, unsigned long identifier, const char* data, int dataLength);
[Network]
void didReceiveEncodedDataLength([Keep] LocalFrame*, unsigned long identifier, int encodedDataLength);
[Network]
- void didFinishLoading(LocalFrame* frame, unsigned long identifier, double finishTime, int64_t encodedDataLength);
+ void didFinishLoading(ExecutionContext*, unsigned long identifier, double finishTime, int64_t encodedDataLength);
[Network]
void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, Resource*);
[Network]
- void didFailLoading(LocalFrame* frame, unsigned long identifier, const ResourceError&);
+ void didFailLoading(ExecutionContext*, unsigned long identifier, const ResourceError&);
[Network]
void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsigned long identifier, ThreadableLoaderClient* client);

Powered by Google App Engine
This is Rietveld 408576698