diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-15 05:50:11 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-15 05:50:11 +0000 |
commit | bf3eb00891aaa033bdaee57797e665eb71f28817 (patch) | |
tree | 72bda1e59fa1f379d578298272eb2e3729174c05 /net/http/http_stream_base.h | |
parent | 67d13d556a713a64e41c2ff76f58f4839296f37e (diff) | |
download | chromium_src-bf3eb00891aaa033bdaee57797e665eb71f28817.zip chromium_src-bf3eb00891aaa033bdaee57797e665eb71f28817.tar.gz chromium_src-bf3eb00891aaa033bdaee57797e665eb71f28817.tar.bz2 |
net: Remove UploadDataStream* argument from HttpStream::SendRequest
HttpInfo::upload_data is used instead.
BUG=156574
TEST=net_unittests
Review URL: https://chromiumcodereview.appspot.com/11361116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_base.h')
-rw-r--r-- | net/http/http_stream_base.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/http/http_stream_base.h b/net/http/http_stream_base.h index f6a9797..dbf51de 100644 --- a/net/http/http_stream_base.h +++ b/net/http/http_stream_base.h @@ -28,7 +28,6 @@ class HttpResponseInfo; class IOBuffer; class SSLCertRequestInfo; class SSLInfo; -class UploadDataStream; class NET_EXPORT_PRIVATE HttpStreamBase { public: @@ -46,7 +45,6 @@ class NET_EXPORT_PRIVATE HttpStreamBase { // synchronously, in which case the result will be passed to the callback // when available. Returns OK on success. virtual int SendRequest(const HttpRequestHeaders& request_headers, - UploadDataStream* request_body, HttpResponseInfo* response, const CompletionCallback& callback) = 0; |