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

Unified Diff: webkit/glue/weburlrequest_impl.cc

Issue 52040: Chrome changes to support cached form submissions.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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: webkit/glue/weburlrequest_impl.cc
===================================================================
--- webkit/glue/weburlrequest_impl.cc (revision 12361)
+++ webkit/glue/weburlrequest_impl.cc (working copy)
@@ -177,6 +177,8 @@
NOTREACHED();
}
}
+
+ data->set_identifier(formdata->identifier());
}
void WebRequestImpl::SetUploadData(const net::UploadData& data)
@@ -199,6 +201,8 @@
}
}
+ formdata->setIdentifier(data.identifier());
+
request_.resourceRequest().setHTTPBody(formdata);
}

Powered by Google App Engine
This is Rietveld 408576698