| Index: third_party/WebKit/Source/core/loader/PingLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/PingLoader.cpp b/third_party/WebKit/Source/core/loader/PingLoader.cpp
|
| index a08a69ef16814229f7f969dbe6c60dd8f1f07518..693c264b04614bf6b0067c8abc0b4d3511e3dd82 100644
|
| --- a/third_party/WebKit/Source/core/loader/PingLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/PingLoader.cpp
|
| @@ -210,9 +210,9 @@ class PingLoaderImpl : public GarbageCollectedFinalized<PingLoaderImpl>,
|
| WebURLRequest&,
|
| const WebURLResponse&) override;
|
| void didReceiveResponse(WebURLLoader*, const WebURLResponse&) final;
|
| - void didReceiveData(WebURLLoader*, const char*, int, int, int) final;
|
| - void didFinishLoading(WebURLLoader*, double, int64_t) final;
|
| - void didFail(WebURLLoader*, const WebURLError&, int64_t) final;
|
| + void didReceiveData(WebURLLoader*, const char*, int, int) final;
|
| + void didFinishLoading(WebURLLoader*, double, int64_t, int64_t) final;
|
| + void didFail(WebURLLoader*, const WebURLError&, int64_t, int64_t) final;
|
|
|
| void timeout(TimerBase*);
|
|
|
| @@ -346,7 +346,7 @@ void PingLoaderImpl::didReceiveResponse(WebURLLoader*,
|
| dispose();
|
| }
|
|
|
| -void PingLoaderImpl::didReceiveData(WebURLLoader*, const char*, int, int, int) {
|
| +void PingLoaderImpl::didReceiveData(WebURLLoader*, const char*, int, int) {
|
| if (LocalFrame* frame = this->frame()) {
|
| TRACE_EVENT1("devtools.timeline", "ResourceFinish", "data",
|
| InspectorResourceFinishEvent::data(m_identifier, 0, true));
|
| @@ -355,7 +355,7 @@ void PingLoaderImpl::didReceiveData(WebURLLoader*, const char*, int, int, int) {
|
| dispose();
|
| }
|
|
|
| -void PingLoaderImpl::didFinishLoading(WebURLLoader*, double, int64_t) {
|
| +void PingLoaderImpl::didFinishLoading(WebURLLoader*, double, int64_t, int64_t) {
|
| if (LocalFrame* frame = this->frame()) {
|
| TRACE_EVENT1("devtools.timeline", "ResourceFinish", "data",
|
| InspectorResourceFinishEvent::data(m_identifier, 0, true));
|
| @@ -366,6 +366,7 @@ void PingLoaderImpl::didFinishLoading(WebURLLoader*, double, int64_t) {
|
|
|
| void PingLoaderImpl::didFail(WebURLLoader*,
|
| const WebURLError& resourceError,
|
| + int64_t,
|
| int64_t) {
|
| if (LocalFrame* frame = this->frame()) {
|
| TRACE_EVENT1("devtools.timeline", "ResourceFinish", "data",
|
|
|