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_SPDY2_H_ | 5 #ifndef NET_SPDY_SPDY_TEST_UTIL_SPDY2_H_ |
6 #define NET_SPDY_SPDY_TEST_UTIL_SPDY2_H_ | 6 #define NET_SPDY_SPDY_TEST_UTIL_SPDY2_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "net/base/cert_verifier.h" | 9 #include "net/base/cert_verifier.h" |
10 #include "net/base/host_port_pair.h" | 10 #include "net/base/host_port_pair.h" |
11 #include "net/base/mock_host_resolver.h" | 11 #include "net/base/mock_host_resolver.h" |
12 #include "net/base/request_priority.h" | 12 #include "net/base/request_priority.h" |
13 #include "net/base/ssl_config_service_defaults.h" | |
14 #include "net/http/http_auth_handler_factory.h" | 13 #include "net/http/http_auth_handler_factory.h" |
15 #include "net/http/http_cache.h" | 14 #include "net/http/http_cache.h" |
| 15 #include "net/http/http_network_layer.h" |
16 #include "net/http/http_network_session.h" | 16 #include "net/http/http_network_session.h" |
17 #include "net/http/http_network_layer.h" | |
18 #include "net/http/http_server_properties_impl.h" | 17 #include "net/http/http_server_properties_impl.h" |
19 #include "net/http/http_transaction_factory.h" | 18 #include "net/http/http_transaction_factory.h" |
20 #include "net/proxy/proxy_service.h" | 19 #include "net/proxy/proxy_service.h" |
21 #include "net/socket/socket_test_util.h" | 20 #include "net/socket/socket_test_util.h" |
22 #include "net/spdy/spdy_session.h" | 21 #include "net/spdy/spdy_session.h" |
| 22 #include "net/ssl/ssl_config_service_defaults.h" |
23 #include "net/url_request/url_request_context.h" | 23 #include "net/url_request/url_request_context.h" |
24 #include "net/url_request/url_request_context_storage.h" | 24 #include "net/url_request/url_request_context_storage.h" |
25 | 25 |
26 namespace net { | 26 namespace net { |
27 | 27 |
28 namespace test_spdy2 { | 28 namespace test_spdy2 { |
29 | 29 |
30 // Default upload data used by both, mock objects and framer when creating | 30 // Default upload data used by both, mock objects and framer when creating |
31 // data frames. | 31 // data frames. |
32 const char kDefaultURL[] = "http://www.google.com"; | 32 const char kDefaultURL[] = "http://www.google.com"; |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 SpdySessionPool* const pool_; | 417 SpdySessionPool* const pool_; |
418 | 418 |
419 DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); | 419 DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); |
420 }; | 420 }; |
421 | 421 |
422 } // namespace test_spdy2 | 422 } // namespace test_spdy2 |
423 | 423 |
424 } // namespace net | 424 } // namespace net |
425 | 425 |
426 #endif // NET_SPDY_SPDY_TEST_UTIL_SPDY2_H_ | 426 #endif // NET_SPDY_SPDY_TEST_UTIL_SPDY2_H_ |
OLD | NEW |