diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-20 23:22:41 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-20 23:22:41 +0000 |
commit | 49639fa94a527376c0e9b93d4c54c1b8c835c041 (patch) | |
tree | dd03b9fd758c7b19b25e9934f9de9def738cdc33 /net/http/http_stream_parser.h | |
parent | 5fc2429ede8409759abf8d0c23ef5076e8e31fcf (diff) | |
download | chromium_src-49639fa94a527376c0e9b93d4c54c1b8c835c041.zip chromium_src-49639fa94a527376c0e9b93d4c54c1b8c835c041.tar.gz chromium_src-49639fa94a527376c0e9b93d4c54c1b8c835c041.tar.bz2 |
base::Bind: Convert most of net/http.
BUG=none
TEST=none
R=csilv
Review URL: http://codereview.chromium.org/8990001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115220 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_stream_parser.h')
-rw-r--r-- | net/http/http_stream_parser.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h index b80145f..ae9fc3e 100644 --- a/net/http/http_stream_parser.h +++ b/net/http/http_stream_parser.h @@ -44,12 +44,13 @@ class HttpStreamParser : public ChunkCallback { int SendRequest(const std::string& request_line, const HttpRequestHeaders& headers, UploadDataStream* request_body, - HttpResponseInfo* response, OldCompletionCallback* callback); + HttpResponseInfo* response, + const CompletionCallback& callback); - int ReadResponseHeaders(OldCompletionCallback* callback); + int ReadResponseHeaders(const CompletionCallback& callback); int ReadResponseBody(IOBuffer* buf, int buf_len, - OldCompletionCallback* callback); + const CompletionCallback& callback); void Close(bool not_reusable); @@ -175,13 +176,13 @@ class HttpStreamParser : public ChunkCallback { // The callback to notify a user that their request or response is // complete or there was an error - OldCompletionCallback* user_callback_; + CompletionCallback callback_; // In the client callback, the client can do anything, including // destroying this class, so any pending callback must be issued // after everything else is done. When it is time to issue the client - // callback, move it from |user_callback_| to |scheduled_callback_|. - OldCompletionCallback* scheduled_callback_; + // callback, move it from |callback_| to |scheduled_callback_|. + CompletionCallback scheduled_callback_; // The underlying socket. ClientSocketHandle* const connection_; |