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

Unified Diff: chrome_frame/plugin_url_request.cc

Issue 6357017: Add support for chunked encoding in ChromeFrame for POST requests. This fixes... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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: chrome_frame/plugin_url_request.cc
===================================================================
--- chrome_frame/plugin_url_request.cc (revision 72508)
+++ chrome_frame/plugin_url_request.cc (working copy)
@@ -13,7 +13,8 @@
post_data_len_(0),
enable_frame_busting_(false),
resource_type_(ResourceType::MAIN_FRAME),
- load_flags_(0) {
+ load_flags_(0),
+ is_chunked_upload_(false) {
}
PluginUrlRequest::~PluginUrlRequest() {
@@ -47,6 +48,7 @@
upload_stream->AddRef();
upload_stream->Initialize(upload_data);
upload_data_.Attach(upload_stream);
+ is_chunked_upload_ = upload_data->is_chunked();
}
}

Powered by Google App Engine
This is Rietveld 408576698