summaryrefslogtreecommitdiffstats
path: root/net/socket_stream/socket_stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket_stream/socket_stream.cc')
-rw-r--r--net/socket_stream/socket_stream.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/net/socket_stream/socket_stream.cc b/net/socket_stream/socket_stream.cc
index 84b58bc..f610f62 100644
--- a/net/socket_stream/socket_stream.cc
+++ b/net/socket_stream/socket_stream.cc
@@ -101,9 +101,8 @@ SocketStream::SocketStream(const GURL& url, Delegate* delegate)
pac_request_(NULL),
// Unretained() is required; without it, Bind() creates a circular
// dependency and the SocketStream object will not be freed.
- ALLOW_THIS_IN_INITIALIZER_LIST(
- io_callback_(base::Bind(&SocketStream::OnIOCompleted,
- base::Unretained(this)))),
+ io_callback_(base::Bind(&SocketStream::OnIOCompleted,
+ base::Unretained(this))),
read_buf_(NULL),
current_write_buf_(NULL),
waiting_for_write_completion_(false),