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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceTimingInfo.h

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/platform/network/ResourceTimingInfo.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceTimingInfo.h b/third_party/WebKit/Source/platform/network/ResourceTimingInfo.h
index 452d50727b5c97c865c9d3594cf6e8872ceb8e13..5ad73557f86bc28cd2e5e7c8a9a95de150ceb40c 100644
--- a/third_party/WebKit/Source/platform/network/ResourceTimingInfo.h
+++ b/third_party/WebKit/Source/platform/network/ResourceTimingInfo.h
@@ -76,7 +76,7 @@ public:
void setFinalResponse(const ResourceResponse& response) { m_finalResponse = response; }
const ResourceResponse& finalResponse() const { return m_finalResponse; }
- void addRedirect(const ResourceResponse& redirectResponse, long long encodedDataLength, bool crossOrigin);
+ void addRedirect(const ResourceResponse& redirectResponse, bool crossOrigin);
const Vector<ResourceResponse>& redirectChain() const { return m_redirectChain; }
void addFinalTransferSize(long long encodedDataLength) { m_transferSize += encodedDataLength; }

Powered by Google App Engine
This is Rietveld 408576698