OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/http/bidirectional_stream.h" | 5 #include "net/http/bidirectional_stream.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/location.h" | 11 #include "base/location.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
14 #include "base/thread_task_runner_handle.h" | 14 #include "base/threading/thread_task_runner_handle.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
17 #include "base/values.h" | 17 #include "base/values.h" |
18 #include "net/base/load_flags.h" | 18 #include "net/base/load_flags.h" |
19 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
20 #include "net/http/bidirectional_stream_request_info.h" | 20 #include "net/http/bidirectional_stream_request_info.h" |
21 #include "net/http/http_log_util.h" | 21 #include "net/http/http_log_util.h" |
22 #include "net/http/http_network_session.h" | 22 #include "net/http/http_network_session.h" |
23 #include "net/http/http_response_headers.h" | 23 #include "net/http/http_response_headers.h" |
24 #include "net/http/http_stream.h" | 24 #include "net/http/http_stream.h" |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 const ProxyInfo& used_proxy_info, | 331 const ProxyInfo& used_proxy_info, |
332 HttpStream* stream) { | 332 HttpStream* stream) { |
333 DCHECK(stream_request_); | 333 DCHECK(stream_request_); |
334 | 334 |
335 delegate_->OnFailed(ERR_HTTPS_PROXY_TUNNEL_RESPONSE); | 335 delegate_->OnFailed(ERR_HTTPS_PROXY_TUNNEL_RESPONSE); |
336 } | 336 } |
337 | 337 |
338 void BidirectionalStream::OnQuicBroken() {} | 338 void BidirectionalStream::OnQuicBroken() {} |
339 | 339 |
340 } // namespace net | 340 } // namespace net |
OLD | NEW |