| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_COMMON_H_ | 5 #ifndef NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
| 6 #define NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ | 6 #define NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 scoped_ptr<ProxyService> proxy_service; | 210 scoped_ptr<ProxyService> proxy_service; |
| 211 scoped_refptr<SSLConfigService> ssl_config_service; | 211 scoped_refptr<SSLConfigService> ssl_config_service; |
| 212 scoped_ptr<MockClientSocketFactory> socket_factory; | 212 scoped_ptr<MockClientSocketFactory> socket_factory; |
| 213 scoped_ptr<DeterministicMockClientSocketFactory> deterministic_socket_factory; | 213 scoped_ptr<DeterministicMockClientSocketFactory> deterministic_socket_factory; |
| 214 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; | 214 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; |
| 215 HttpServerPropertiesImpl http_server_properties; | 215 HttpServerPropertiesImpl http_server_properties; |
| 216 bool enable_ip_pooling; | 216 bool enable_ip_pooling; |
| 217 bool enable_compression; | 217 bool enable_compression; |
| 218 bool enable_ping; | 218 bool enable_ping; |
| 219 bool enable_user_alternate_protocol_ports; | 219 bool enable_user_alternate_protocol_ports; |
| 220 bool enable_npn; | |
| 221 NextProto protocol; | 220 NextProto protocol; |
| 222 size_t session_max_recv_window_size; | 221 size_t session_max_recv_window_size; |
| 223 size_t stream_max_recv_window_size; | 222 size_t stream_max_recv_window_size; |
| 224 SpdySession::TimeFunc time_func; | 223 SpdySession::TimeFunc time_func; |
| 225 NextProtoVector next_protos; | 224 NextProtoVector next_protos; |
| 226 std::string trusted_spdy_proxy; | 225 std::string trusted_spdy_proxy; |
| 227 bool use_alternative_services; | 226 bool use_alternative_services; |
| 228 NetLog* net_log; | 227 NetLog* net_log; |
| 229 }; | 228 }; |
| 230 | 229 |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 GURL default_url_; | 597 GURL default_url_; |
| 599 bool dependency_priorities_; | 598 bool dependency_priorities_; |
| 600 | 599 |
| 601 // Track a FIFO list of the stream_id of all created requests by priority. | 600 // Track a FIFO list of the stream_id of all created requests by priority. |
| 602 std::map<int, std::vector<int>> priority_to_stream_id_list_; | 601 std::map<int, std::vector<int>> priority_to_stream_id_list_; |
| 603 }; | 602 }; |
| 604 | 603 |
| 605 } // namespace net | 604 } // namespace net |
| 606 | 605 |
| 607 #endif // NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ | 606 #endif // NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
| OLD | NEW |