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

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

Issue 2701753003: [WIP] off-main-thread loading
Patch Set: small fix 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 faeaa1e6a0d01abaab81cab7a9f6e1cd8b7954a1..a919c3e5ecf760d90cdd1f121d8697a711d2c190 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
@@ -77,23 +77,21 @@ class CORE_EXPORT InspectorTraceEvents : public InspectorAgent {
protocol::DictionaryValue*) override;
void dispose() override;
- void willSendRequest(LocalFrame*,
- unsigned long identifier,
+ void willSendRequest(unsigned long identifier,
DocumentLoader*,
ResourceRequest&,
const ResourceResponse& redirectResponse,
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 dataLength);
- void didFinishLoading(LocalFrame*,
- unsigned long identifier,
+ void didFinishLoading(unsigned long identifier,
+ DocumentLoader*,
double monotonicFinishTime,
int64_t encodedDataLength,
int64_t decodedBodyLength);

Powered by Google App Engine
This is Rietveld 408576698