| 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 7e4fcb5c7ca55a0607566354859e7eec8666cf8f..a5f8821dcc15fa48fd30ebc90f8156dd0d80cce2 100644
|
| --- a/third_party/WebKit/Source/core/loader/PingLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/PingLoader.cpp
|
| @@ -213,7 +213,7 @@ private:
|
| void dispose();
|
|
|
| // WebURLLoaderClient
|
| - void willFollowRedirect(WebURLLoader*, WebURLRequest&, const WebURLResponse&, int64_t encodedDataLength) override;
|
| + void willFollowRedirect(WebURLLoader*, 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;
|
| @@ -290,7 +290,7 @@ void PingLoaderImpl::dispose()
|
| m_keepAlive.clear();
|
| }
|
|
|
| -void PingLoaderImpl::willFollowRedirect(WebURLLoader*, WebURLRequest& passedNewRequest, const WebURLResponse& passedRedirectResponse, int64_t encodedDataLength)
|
| +void PingLoaderImpl::willFollowRedirect(WebURLLoader*, WebURLRequest& passedNewRequest, const WebURLResponse& passedRedirectResponse)
|
| {
|
| if (!m_isBeacon)
|
| return;
|
|
|