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 #ifndef NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ | 5 #ifndef NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ |
6 #define NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ | 6 #define NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "crypto/ec_private_key.h" | 10 #include "crypto/ec_private_key.h" |
11 #include "crypto/ec_signature_creator.h" | 11 #include "crypto/ec_signature_creator.h" |
12 #include "net/base/cert_verifier.h" | 12 #include "net/base/cert_verifier.h" |
13 #include "net/base/host_port_pair.h" | 13 #include "net/base/host_port_pair.h" |
14 #include "net/base/mock_host_resolver.h" | 14 #include "net/base/mock_host_resolver.h" |
15 #include "net/base/request_priority.h" | 15 #include "net/base/request_priority.h" |
16 #include "net/base/ssl_config_service_defaults.h" | |
17 #include "net/http/http_auth_handler_factory.h" | 16 #include "net/http/http_auth_handler_factory.h" |
18 #include "net/http/http_cache.h" | 17 #include "net/http/http_cache.h" |
| 18 #include "net/http/http_network_layer.h" |
19 #include "net/http/http_network_session.h" | 19 #include "net/http/http_network_session.h" |
20 #include "net/http/http_network_layer.h" | |
21 #include "net/http/http_server_properties_impl.h" | 20 #include "net/http/http_server_properties_impl.h" |
22 #include "net/http/http_transaction_factory.h" | 21 #include "net/http/http_transaction_factory.h" |
23 #include "net/proxy/proxy_service.h" | 22 #include "net/proxy/proxy_service.h" |
24 #include "net/socket/socket_test_util.h" | 23 #include "net/socket/socket_test_util.h" |
25 #include "net/spdy/spdy_session.h" | 24 #include "net/spdy/spdy_session.h" |
| 25 #include "net/ssl/ssl_config_service_defaults.h" |
26 #include "net/url_request/url_request_context.h" | 26 #include "net/url_request/url_request_context.h" |
27 #include "net/url_request/url_request_context_storage.h" | 27 #include "net/url_request/url_request_context_storage.h" |
28 | 28 |
29 namespace crypto { | 29 namespace crypto { |
30 class ECSignatureCreatorFactory; | 30 class ECSignatureCreatorFactory; |
31 } | 31 } |
32 | 32 |
33 namespace net { | 33 namespace net { |
34 | 34 |
35 namespace test_spdy3 { | 35 namespace test_spdy3 { |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 SpdySessionPool* const pool_; | 459 SpdySessionPool* const pool_; |
460 | 460 |
461 DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); | 461 DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); |
462 }; | 462 }; |
463 | 463 |
464 } // namespace test_spdy3 | 464 } // namespace test_spdy3 |
465 | 465 |
466 } // namespace net | 466 } // namespace net |
467 | 467 |
468 #endif // NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ | 468 #endif // NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ |
OLD | NEW |