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

Unified Diff: third_party/WebKit/Source/core/loader/PingLoader.cpp

Issue 2316573002: PlzNavigate: Support ResourceTiming API (Closed)
Patch Set: Nit + rebase + build fix Created 4 years, 3 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/loader/PingLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/PingLoader.cpp b/third_party/WebKit/Source/core/loader/PingLoader.cpp
index eda58be918b50d7320748d833e0cc1b2af001d46..0808f92c92cf7e468155ecd349b9fe9d5cc222f4 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;

Powered by Google App Engine
This is Rietveld 408576698