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

Unified Diff: chrome_frame/plugin_url_request.h

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.h
===================================================================
--- chrome_frame/plugin_url_request.h (revision 72508)
+++ chrome_frame/plugin_url_request.h (working copy)
@@ -149,6 +149,10 @@
return post_data_len_;
}
+ bool is_chunked_upload() const {
+ return is_chunked_upload_;
+ }
+
protected:
HRESULT get_upload_data(IStream** ret) {
DCHECK(ret);
@@ -181,6 +185,7 @@
ResourceType::Type resource_type_;
int load_flags_;
ScopedComPtr<IStream> upload_data_;
+ bool is_chunked_upload_;
};
#endif // CHROME_FRAME_PLUGIN_URL_REQUEST_H_

Powered by Google App Engine
This is Rietveld 408576698