| Index: net/http/http_stream_factory_impl_job.cc
|
| diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc
|
| index 8273a5a78414250143d792b8e3bc645f6b1a7c33..ae87ec6a16d2af944899b3dfa715134b73c88dd8 100644
|
| --- a/net/http/http_stream_factory_impl_job.cc
|
| +++ b/net/http/http_stream_factory_impl_job.cc
|
| @@ -849,6 +849,7 @@ int HttpStreamFactoryImpl::Job::DoWaitComplete(int result) {
|
| }
|
|
|
| int HttpStreamFactoryImpl::Job::DoInitConnection() {
|
| + net_log_.BeginEvent(NetLogEventType::HTTP_STREAM_JOB_INIT_CONNECTION);
|
| int result = DoInitConnectionImpl();
|
| if (result != ERR_SPDY_SESSION_ALREADY_EXISTS)
|
| delegate_->OnConnectionInitialized(this, result);
|
| @@ -1023,6 +1024,7 @@ int HttpStreamFactoryImpl::Job::DoInitConnectionImpl() {
|
| }
|
|
|
| int HttpStreamFactoryImpl::Job::DoInitConnectionComplete(int result) {
|
| + net_log_.EndEvent(NetLogEventType::HTTP_STREAM_JOB_INIT_CONNECTION);
|
| if (job_type_ == PRECONNECT) {
|
| if (using_quic_)
|
| return result;
|
|
|