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

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

Issue 2900613002: Support DevTools for off-main-thread-fetch (Closed)
Patch Set: rebase Created 3 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: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
index 757aff16fb82c6269c584e34d4180035b7a90597..748f68d115c15431a8997012c0ff3fa9936ac7b3 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
@@ -75,24 +75,22 @@ class CORE_EXPORT InspectorTraceEvents : public InspectorAgent {
protocol::UberDispatcher*,
protocol::DictionaryValue*) override;
void Dispose() override;
-
- void WillSendRequest(LocalFrame*,
+ void WillSendRequest(ExecutionContext*,
unsigned long identifier,
DocumentLoader*,
ResourceRequest&,
const ResourceResponse& redirect_response,
const FetchInitiatorInfo&);
- void DidReceiveResourceResponse(LocalFrame*,
- unsigned long identifier,
+ void DidReceiveResourceResponse(unsigned long identifier,
DocumentLoader*,
const ResourceResponse&,
Resource*);
- void DidReceiveData(LocalFrame*,
- unsigned long identifier,
+ void DidReceiveData(unsigned long identifier,
+ DocumentLoader*,
const char* data,
int data_length);
- void DidFinishLoading(LocalFrame*,
- unsigned long identifier,
+ void DidFinishLoading(unsigned long identifier,
+ DocumentLoader*,
double monotonic_finish_time,
int64_t encoded_data_length,
int64_t decoded_body_length);

Powered by Google App Engine
This is Rietveld 408576698