Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: net/http/http_stream_factory_impl_unittest.cc

Issue 2565563002: Move various Chromium QUIC files to net/quic/chromium where they belong (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/http/http_network_session.cc ('k') | net/net.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 8
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 18 matching lines...) Expand all
29 #include "net/http/http_network_session_peer.h" 29 #include "net/http/http_network_session_peer.h"
30 #include "net/http/http_network_transaction.h" 30 #include "net/http/http_network_transaction.h"
31 #include "net/http/http_request_info.h" 31 #include "net/http/http_request_info.h"
32 #include "net/http/http_server_properties.h" 32 #include "net/http/http_server_properties.h"
33 #include "net/http/http_server_properties_impl.h" 33 #include "net/http/http_server_properties_impl.h"
34 #include "net/http/http_stream.h" 34 #include "net/http/http_stream.h"
35 #include "net/http/transport_security_state.h" 35 #include "net/http/transport_security_state.h"
36 #include "net/log/net_log_with_source.h" 36 #include "net/log/net_log_with_source.h"
37 #include "net/proxy/proxy_info.h" 37 #include "net/proxy/proxy_info.h"
38 #include "net/proxy/proxy_service.h" 38 #include "net/proxy/proxy_service.h"
39 #include "net/quic/core/quic_http_utils.h" 39 #include "net/quic/chromium/mock_crypto_client_stream_factory.h"
40 #include "net/quic/chromium/quic_http_utils.h"
41 #include "net/quic/chromium/quic_test_packet_maker.h"
40 #include "net/quic/core/quic_server_id.h" 42 #include "net/quic/core/quic_server_id.h"
41 #include "net/quic/test_tools/crypto_test_utils.h" 43 #include "net/quic/test_tools/crypto_test_utils.h"
42 #include "net/quic/test_tools/mock_crypto_client_stream_factory.h"
43 #include "net/quic/test_tools/mock_random.h" 44 #include "net/quic/test_tools/mock_random.h"
44 #include "net/quic/test_tools/quic_stream_factory_peer.h" 45 #include "net/quic/test_tools/quic_stream_factory_peer.h"
45 #include "net/quic/test_tools/quic_test_packet_maker.h"
46 #include "net/quic/test_tools/quic_test_utils.h" 46 #include "net/quic/test_tools/quic_test_utils.h"
47 #include "net/socket/client_socket_handle.h" 47 #include "net/socket/client_socket_handle.h"
48 #include "net/socket/mock_client_socket_pool_manager.h" 48 #include "net/socket/mock_client_socket_pool_manager.h"
49 #include "net/socket/next_proto.h" 49 #include "net/socket/next_proto.h"
50 #include "net/socket/socket_test_util.h" 50 #include "net/socket/socket_test_util.h"
51 #include "net/spdy/spdy_session.h" 51 #include "net/spdy/spdy_session.h"
52 #include "net/spdy/spdy_session_pool.h" 52 #include "net/spdy/spdy_session_pool.h"
53 #include "net/spdy/spdy_test_util_common.h" 53 #include "net/spdy/spdy_test_util_common.h"
54 #include "net/ssl/ssl_config_service.h" 54 #include "net/ssl/ssl_config_service.h"
55 #include "net/ssl/ssl_config_service_defaults.h" 55 #include "net/ssl/ssl_config_service_defaults.h"
(...skipping 2219 matching lines...) Expand 10 before | Expand all | Expand 10 after
2275 session->GetTransportSocketPool( 2275 session->GetTransportSocketPool(
2276 HttpNetworkSession::WEBSOCKET_SOCKET_POOL))); 2276 HttpNetworkSession::WEBSOCKET_SOCKET_POOL)));
2277 EXPECT_EQ(1, GetSocketPoolGroupCount( 2277 EXPECT_EQ(1, GetSocketPoolGroupCount(
2278 session->GetSSLSocketPool(HttpNetworkSession::WEBSOCKET_SOCKET_POOL))); 2278 session->GetSSLSocketPool(HttpNetworkSession::WEBSOCKET_SOCKET_POOL)));
2279 EXPECT_TRUE(waiter.used_proxy_info().is_direct()); 2279 EXPECT_TRUE(waiter.used_proxy_info().is_direct());
2280 } 2280 }
2281 2281
2282 } // namespace 2282 } // namespace
2283 2283
2284 } // namespace net 2284 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_session.cc ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698