diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-24 02:39:54 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-24 02:39:54 +0000 |
commit | e993abfe81feaa374d476828a44942d296bdcc78 (patch) | |
tree | 201fffef0ba93ce41afaf2bd6e61e05b61c04028 /net/base/completion_callback.h | |
parent | 0afe80d755b899c188313629ea3f45f0fe5be981 (diff) | |
download | chromium_src-e993abfe81feaa374d476828a44942d296bdcc78.zip chromium_src-e993abfe81feaa374d476828a44942d296bdcc78.tar.gz chromium_src-e993abfe81feaa374d476828a44942d296bdcc78.tar.bz2 |
revert r8603
Review URL: http://codereview.chromium.org/18576
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8605 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/completion_callback.h')
-rw-r--r-- | net/base/completion_callback.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/net/base/completion_callback.h b/net/base/completion_callback.h index f9bb233..4013f71 100644 --- a/net/base/completion_callback.h +++ b/net/base/completion_callback.h @@ -6,7 +6,6 @@ #define NET_BASE_COMPLETION_CALLBACK_H__ #include "base/task.h" -#include "net/base/io_buffer.h" namespace net { @@ -42,23 +41,8 @@ class CancelableCompletionCallback : is_canceled_ = true; } - // Attaches the given buffer to this callback so it is valid until the - // operation completes. TODO(rvargas): This is a temporal fix for bug 5325 - // while I send IOBuffer to the lower layers of code. - void UseBuffer(net::IOBuffer* buffer) { - DCHECK(!buffer_.get()); - buffer_ = buffer; - } - - // The callback is not expected anymore so release the buffer. - void ReleaseBuffer() { - DCHECK(buffer_.get()); - buffer_ = NULL; - } - virtual void RunWithParams(const Tuple1<int>& params) { if (is_canceled_) { - CancelableCompletionCallback<T>::ReleaseBuffer(); base::RefCounted<CancelableCompletionCallback<T> >::Release(); } else { CompletionCallbackImpl<T>::RunWithParams(params); @@ -66,7 +50,6 @@ class CancelableCompletionCallback : } private: - scoped_refptr<net::IOBuffer> buffer_; bool is_canceled_; }; |