| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_stream_factory_impl.h" | 5 #include "net/http/http_stream_factory_impl.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "net/http/http_network_session_peer.h" | 25 #include "net/http/http_network_session_peer.h" |
| 26 #include "net/http/http_network_transaction.h" | 26 #include "net/http/http_network_transaction.h" |
| 27 #include "net/http/http_request_info.h" | 27 #include "net/http/http_request_info.h" |
| 28 #include "net/http/http_server_properties.h" | 28 #include "net/http/http_server_properties.h" |
| 29 #include "net/http/http_server_properties_impl.h" | 29 #include "net/http/http_server_properties_impl.h" |
| 30 #include "net/http/http_stream.h" | 30 #include "net/http/http_stream.h" |
| 31 #include "net/http/transport_security_state.h" | 31 #include "net/http/transport_security_state.h" |
| 32 #include "net/log/net_log.h" | 32 #include "net/log/net_log.h" |
| 33 #include "net/proxy/proxy_info.h" | 33 #include "net/proxy/proxy_info.h" |
| 34 #include "net/proxy/proxy_service.h" | 34 #include "net/proxy/proxy_service.h" |
| 35 #include "net/quic/quic_http_utils.h" | 35 #include "net/quic/core/quic_http_utils.h" |
| 36 #include "net/quic/quic_server_id.h" | 36 #include "net/quic/core/quic_server_id.h" |
| 37 #include "net/quic/test_tools/crypto_test_utils.h" | 37 #include "net/quic/test_tools/crypto_test_utils.h" |
| 38 #include "net/quic/test_tools/mock_crypto_client_stream_factory.h" | 38 #include "net/quic/test_tools/mock_crypto_client_stream_factory.h" |
| 39 #include "net/quic/test_tools/mock_random.h" | 39 #include "net/quic/test_tools/mock_random.h" |
| 40 #include "net/quic/test_tools/quic_stream_factory_peer.h" | 40 #include "net/quic/test_tools/quic_stream_factory_peer.h" |
| 41 #include "net/quic/test_tools/quic_test_packet_maker.h" | 41 #include "net/quic/test_tools/quic_test_packet_maker.h" |
| 42 #include "net/quic/test_tools/quic_test_utils.h" | 42 #include "net/quic/test_tools/quic_test_utils.h" |
| 43 #include "net/socket/client_socket_handle.h" | 43 #include "net/socket/client_socket_handle.h" |
| 44 #include "net/socket/mock_client_socket_pool_manager.h" | 44 #include "net/socket/mock_client_socket_pool_manager.h" |
| 45 #include "net/socket/next_proto.h" | 45 #include "net/socket/next_proto.h" |
| 46 #include "net/socket/socket_test_util.h" | 46 #include "net/socket/socket_test_util.h" |
| (...skipping 2009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2056 session->GetTransportSocketPool( | 2056 session->GetTransportSocketPool( |
| 2057 HttpNetworkSession::WEBSOCKET_SOCKET_POOL))); | 2057 HttpNetworkSession::WEBSOCKET_SOCKET_POOL))); |
| 2058 EXPECT_EQ(1, GetSocketPoolGroupCount( | 2058 EXPECT_EQ(1, GetSocketPoolGroupCount( |
| 2059 session->GetSSLSocketPool(HttpNetworkSession::WEBSOCKET_SOCKET_POOL))); | 2059 session->GetSSLSocketPool(HttpNetworkSession::WEBSOCKET_SOCKET_POOL))); |
| 2060 EXPECT_TRUE(waiter.used_proxy_info().is_direct()); | 2060 EXPECT_TRUE(waiter.used_proxy_info().is_direct()); |
| 2061 } | 2061 } |
| 2062 | 2062 |
| 2063 } // namespace | 2063 } // namespace |
| 2064 | 2064 |
| 2065 } // namespace net | 2065 } // namespace net |
| OLD | NEW |