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

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

Issue 2734633002: PlzNavigate: Fix the http/tests/loading/307-after-303-after-post.html and the http/tests/loading/re… (Closed)
Patch Set: Created 3 years, 10 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/WebDataSourceImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebDataSourceImpl.cpp b/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
index c89c9bf12a1d58ade0791869e34ed9a1434eb641..36353928fa7cb3e921ba9bd69e37fb097628b34a 100644
--- a/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
+++ b/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
@@ -59,6 +59,9 @@ const WebURLRequest& WebDataSourceImpl::getRequest() const {
return m_requestWrapper;
}
+WebURLRequest& WebDataSourceImpl::getRequestWritable() {
+ return m_requestWrapper;
+}
const WebURLResponse& WebDataSourceImpl::response() const {
return m_responseWrapper;
}

Powered by Google App Engine
This is Rietveld 408576698