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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h

Issue 2649923007: Revert of Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: 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/InspectorNetworkAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h
index 4daa3acfce6df3ad87db229402017fe64b304cc7..c55719d8fb54020d24ba80bc7118ff80f02b04e2 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.h
@@ -82,18 +82,20 @@
ResourceRequestBlockedReason);
void didChangeResourcePriority(unsigned long identifier,
ResourceLoadPriority);
- void willSendRequest(unsigned long identifier,
+ void willSendRequest(LocalFrame*,
+ unsigned long identifier,
DocumentLoader*,
ResourceRequest&,
const ResourceResponse& redirectResponse,
const FetchInitiatorInfo&);
void markResourceAsCached(unsigned long identifier);
- void didReceiveResourceResponse(ExecutionContext*,
+ void didReceiveResourceResponse(LocalFrame*,
unsigned long identifier,
DocumentLoader*,
const ResourceResponse&,
Resource*);
- void didReceiveData(unsigned long identifier,
+ void didReceiveData(LocalFrame*,
+ unsigned long identifier,
const char* data,
int dataLength);
void didReceiveEncodedDataLength(LocalFrame*,
@@ -231,7 +233,8 @@
explicit InspectorNetworkAgent(InspectedFrames*);
void enable(int totalBufferSize, int resourceBufferSize);
- void willSendRequestInternal(unsigned long identifier,
+ void willSendRequestInternal(LocalFrame*,
+ unsigned long identifier,
DocumentLoader*,
const ResourceRequest&,
const ResourceResponse& redirectResponse,

Powered by Google App Engine
This is Rietveld 408576698