Chromium Code Reviews| 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..1a479577fe4b18ca914afed606f9ee9e30583c88 100644 |
| --- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h |
| +++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h |
| @@ -76,24 +76,23 @@ class CORE_EXPORT InspectorTraceEvents : public InspectorAgent { |
| protocol::UberDispatcher*, |
| protocol::DictionaryValue*) override; |
| void Dispose() override; |
| - |
| - void WillSendRequest(LocalFrame*, |
| + void LoadEventFired(LocalFrame*); |
|
dgozman
2017/05/26 23:46:47
Where is this implemented?
horo
2017/06/27 09:29:13
Removed.
It was accidentally added while rebasing.
|
| + 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); |