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 "base/string_piece.h" | 10 #include "base/string_piece.h" |
11 #include "crypto/ec_private_key.h" | 11 #include "crypto/ec_private_key.h" |
12 #include "crypto/ec_signature_creator.h" | 12 #include "crypto/ec_signature_creator.h" |
13 #include "net/base/cert_verifier.h" | 13 #include "net/base/cert_verifier.h" |
14 #include "net/base/host_port_pair.h" | 14 #include "net/base/host_port_pair.h" |
15 #include "net/base/mock_host_resolver.h" | |
16 #include "net/base/request_priority.h" | 15 #include "net/base/request_priority.h" |
| 16 #include "net/dns/mock_host_resolver.h" |
17 #include "net/http/http_auth_handler_factory.h" | 17 #include "net/http/http_auth_handler_factory.h" |
18 #include "net/http/http_cache.h" | 18 #include "net/http/http_cache.h" |
19 #include "net/http/http_network_layer.h" | 19 #include "net/http/http_network_layer.h" |
20 #include "net/http/http_network_session.h" | 20 #include "net/http/http_network_session.h" |
21 #include "net/http/http_server_properties_impl.h" | 21 #include "net/http/http_server_properties_impl.h" |
22 #include "net/http/http_transaction_factory.h" | 22 #include "net/http/http_transaction_factory.h" |
23 #include "net/proxy/proxy_service.h" | 23 #include "net/proxy/proxy_service.h" |
24 #include "net/socket/socket_test_util.h" | 24 #include "net/socket/socket_test_util.h" |
25 #include "net/spdy/spdy_session.h" | 25 #include "net/spdy/spdy_session.h" |
26 #include "net/ssl/ssl_config_service_defaults.h" | 26 #include "net/ssl/ssl_config_service_defaults.h" |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 SpdySessionPool* const pool_; | 471 SpdySessionPool* const pool_; |
472 | 472 |
473 DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); | 473 DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); |
474 }; | 474 }; |
475 | 475 |
476 } // namespace test_spdy3 | 476 } // namespace test_spdy3 |
477 | 477 |
478 } // namespace net | 478 } // namespace net |
479 | 479 |
480 #endif // NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ | 480 #endif // NET_SPDY_SPDY_TEST_UTIL_SPDY3_H_ |
OLD | NEW |