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

Unified Diff: third_party/WebKit/Source/web/AssociatedURLLoader.cpp

Issue 2316573002: PlzNavigate: Support ResourceTiming API (Closed)
Patch Set: Move redirect response inside the final response. 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/web/AssociatedURLLoader.cpp
diff --git a/third_party/WebKit/Source/web/AssociatedURLLoader.cpp b/third_party/WebKit/Source/web/AssociatedURLLoader.cpp
index 0dfcbadc7813d3f9502832469cf6b65be3097843..f1a12331255f0daa6700729b9c8b9de8f41d20ea 100644
--- a/third_party/WebKit/Source/web/AssociatedURLLoader.cpp
+++ b/third_party/WebKit/Source/web/AssociatedURLLoader.cpp
@@ -149,8 +149,7 @@ void AssociatedURLLoader::ClientAdapter::willFollowRedirect(ResourceRequest& new
WrappedResourceRequest wrappedNewRequest(newRequest);
WrappedResourceResponse wrappedRedirectResponse(redirectResponse);
- // TODO(ricea): Do we need to set encodedDataLength here?
- m_client->willFollowRedirect(m_loader, wrappedNewRequest, wrappedRedirectResponse, 0);
+ m_client->willFollowRedirect(m_loader, wrappedNewRequest, wrappedRedirectResponse);
}
void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent)

Powered by Google App Engine
This is Rietveld 408576698