| 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 <memory> | 5 #include <memory> |
| 6 #include <ostream> | 6 #include <ostream> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "net/http/http_stream_factory.h" | 27 #include "net/http/http_stream_factory.h" |
| 28 #include "net/http/http_transaction_test_util.h" | 28 #include "net/http/http_transaction_test_util.h" |
| 29 #include "net/http/transport_security_state.h" | 29 #include "net/http/transport_security_state.h" |
| 30 #include "net/log/test_net_log.h" | 30 #include "net/log/test_net_log.h" |
| 31 #include "net/log/test_net_log_entry.h" | 31 #include "net/log/test_net_log_entry.h" |
| 32 #include "net/log/test_net_log_util.h" | 32 #include "net/log/test_net_log_util.h" |
| 33 #include "net/proxy/proxy_config_service_fixed.h" | 33 #include "net/proxy/proxy_config_service_fixed.h" |
| 34 #include "net/proxy/proxy_resolver.h" | 34 #include "net/proxy/proxy_resolver.h" |
| 35 #include "net/proxy/proxy_service.h" | 35 #include "net/proxy/proxy_service.h" |
| 36 #include "net/quic/chromium/crypto/proof_verifier_chromium.h" | 36 #include "net/quic/chromium/crypto/proof_verifier_chromium.h" |
| 37 #include "net/quic/crypto/quic_decrypter.h" | 37 #include "net/quic/core/crypto/quic_decrypter.h" |
| 38 #include "net/quic/crypto/quic_encrypter.h" | 38 #include "net/quic/core/crypto/quic_encrypter.h" |
| 39 #include "net/quic/quic_framer.h" | 39 #include "net/quic/core/quic_framer.h" |
| 40 #include "net/quic/quic_http_utils.h" | 40 #include "net/quic/core/quic_http_utils.h" |
| 41 #include "net/quic/test_tools/crypto_test_utils.h" | 41 #include "net/quic/test_tools/crypto_test_utils.h" |
| 42 #include "net/quic/test_tools/mock_clock.h" | 42 #include "net/quic/test_tools/mock_clock.h" |
| 43 #include "net/quic/test_tools/mock_crypto_client_stream_factory.h" | 43 #include "net/quic/test_tools/mock_crypto_client_stream_factory.h" |
| 44 #include "net/quic/test_tools/mock_random.h" | 44 #include "net/quic/test_tools/mock_random.h" |
| 45 #include "net/quic/test_tools/quic_test_packet_maker.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_factory.h" | 47 #include "net/socket/client_socket_factory.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/socket_performance_watcher.h" | 49 #include "net/socket/socket_performance_watcher.h" |
| 50 #include "net/socket/socket_performance_watcher_factory.h" | 50 #include "net/socket/socket_performance_watcher_factory.h" |
| (...skipping 2739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2790 AddHangingSocketData(); | 2790 AddHangingSocketData(); |
| 2791 | 2791 |
| 2792 SendRequestAndExpectQuicResponse(origin1_); | 2792 SendRequestAndExpectQuicResponse(origin1_); |
| 2793 SendRequestAndExpectQuicResponse(origin2_); | 2793 SendRequestAndExpectQuicResponse(origin2_); |
| 2794 | 2794 |
| 2795 EXPECT_TRUE(AllDataConsumed()); | 2795 EXPECT_TRUE(AllDataConsumed()); |
| 2796 } | 2796 } |
| 2797 | 2797 |
| 2798 } // namespace test | 2798 } // namespace test |
| 2799 } // namespace net | 2799 } // namespace net |
| OLD | NEW |