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

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

Issue 2807533003: [WIP2] off-main-thread loading
Patch Set: call set_is_secure_context in EmbeddedSharedWorkerStub::CreateWorkerFetchContext() Created 3 years, 8 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 c19f81b572a5add8647cfb693db32cce166c15ea..ed5db1dc5d9fbc50d08331bf331dee1f9baf7c58 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
@@ -76,24 +76,22 @@ class CORE_EXPORT InspectorTraceEvents : public InspectorAgent {
protocol::UberDispatcher*,
protocol::DictionaryValue*) override;
void Dispose() override;
-
- void WillSendRequest(LocalFrame*,
- unsigned long identifier,
+ void LoadEventFired(LocalFrame*);
+ void WillSendRequest(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