diff options
Diffstat (limited to 'net/http/http_stream_factory_impl_job.cc')
-rw-r--r-- | net/http/http_stream_factory_impl_job.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc index 2e65a5e..680cd32 100644 --- a/net/http/http_stream_factory_impl_job.cc +++ b/net/http/http_stream_factory_impl_job.cc @@ -83,8 +83,7 @@ HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory, server_ssl_config_(server_ssl_config), proxy_ssl_config_(proxy_ssl_config), net_log_(BoundNetLog::Make(net_log, NetLog::SOURCE_HTTP_STREAM_JOB)), - ALLOW_THIS_IN_INITIALIZER_LIST(io_callback_( - base::Bind(&Job::OnIOComplete, base::Unretained(this)))), + io_callback_(base::Bind(&Job::OnIOComplete, base::Unretained(this))), connection_(new ClientSocketHandle), session_(session), stream_factory_(stream_factory), @@ -105,7 +104,7 @@ HttpStreamFactoryImpl::Job::Job(HttpStreamFactoryImpl* stream_factory, num_streams_(0), spdy_session_direct_(false), existing_available_pipeline_(false), - ALLOW_THIS_IN_INITIALIZER_LIST(ptr_factory_(this)) { + ptr_factory_(this) { DCHECK(stream_factory); DCHECK(session); } |