OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/http_network_transaction.h" | 5 #include "net/http/http_network_transaction.h" |
6 | 6 |
7 #include <math.h> // ceil | 7 #include <math.h> // ceil |
8 #include <stdarg.h> | 8 #include <stdarg.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 14515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
14526 RequestPriority priority, | 14526 RequestPriority priority, |
14527 const SSLConfig& server_ssl_config, | 14527 const SSLConfig& server_ssl_config, |
14528 const SSLConfig& proxy_ssl_config, | 14528 const SSLConfig& proxy_ssl_config, |
14529 HttpStreamRequest::Delegate* delegate, | 14529 HttpStreamRequest::Delegate* delegate, |
14530 const BoundNetLog& net_log) override { | 14530 const BoundNetLog& net_log) override { |
14531 FakeStreamRequest* fake_request = new FakeStreamRequest(priority, delegate); | 14531 FakeStreamRequest* fake_request = new FakeStreamRequest(priority, delegate); |
14532 last_stream_request_ = fake_request->AsWeakPtr(); | 14532 last_stream_request_ = fake_request->AsWeakPtr(); |
14533 return fake_request; | 14533 return fake_request; |
14534 } | 14534 } |
14535 | 14535 |
| 14536 HttpStreamRequest* RequestBidirectionalStreamJob( |
| 14537 const HttpRequestInfo& info, |
| 14538 RequestPriority priority, |
| 14539 const SSLConfig& server_ssl_config, |
| 14540 const SSLConfig& proxy_ssl_config, |
| 14541 HttpStreamRequest::Delegate* delegate, |
| 14542 const BoundNetLog& net_log) override { |
| 14543 NOTREACHED(); |
| 14544 return nullptr; |
| 14545 } |
| 14546 |
14536 HttpStreamRequest* RequestWebSocketHandshakeStream( | 14547 HttpStreamRequest* RequestWebSocketHandshakeStream( |
14537 const HttpRequestInfo& info, | 14548 const HttpRequestInfo& info, |
14538 RequestPriority priority, | 14549 RequestPriority priority, |
14539 const SSLConfig& server_ssl_config, | 14550 const SSLConfig& server_ssl_config, |
14540 const SSLConfig& proxy_ssl_config, | 14551 const SSLConfig& proxy_ssl_config, |
14541 HttpStreamRequest::Delegate* delegate, | 14552 HttpStreamRequest::Delegate* delegate, |
14542 WebSocketHandshakeStreamBase::CreateHelper* create_helper, | 14553 WebSocketHandshakeStreamBase::CreateHelper* create_helper, |
14543 const BoundNetLog& net_log) override { | 14554 const BoundNetLog& net_log) override { |
14544 FakeStreamRequest* fake_request = | 14555 FakeStreamRequest* fake_request = |
14545 new FakeStreamRequest(priority, delegate, create_helper); | 14556 new FakeStreamRequest(priority, delegate, create_helper); |
(...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
15795 | 15806 |
15796 scoped_ptr<HttpNetworkSession> session(CreateSession(&session_deps_)); | 15807 scoped_ptr<HttpNetworkSession> session(CreateSession(&session_deps_)); |
15797 HttpNetworkTransaction trans(DEFAULT_PRIORITY, session.get()); | 15808 HttpNetworkTransaction trans(DEFAULT_PRIORITY, session.get()); |
15798 | 15809 |
15799 EXPECT_THAT(trans.server_ssl_config_.alpn_protos, | 15810 EXPECT_THAT(trans.server_ssl_config_.alpn_protos, |
15800 testing::ElementsAre(kProtoHTTP2, kProtoSPDY31, kProtoHTTP11)); | 15811 testing::ElementsAre(kProtoHTTP2, kProtoSPDY31, kProtoHTTP11)); |
15801 EXPECT_TRUE(trans.server_ssl_config_.npn_protos.empty()); | 15812 EXPECT_TRUE(trans.server_ssl_config_.npn_protos.empty()); |
15802 } | 15813 } |
15803 | 15814 |
15804 } // namespace net | 15815 } // namespace net |
OLD | NEW |