| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 scoped_ptr<TransportSecurityState> transport_security_state; | 190 scoped_ptr<TransportSecurityState> transport_security_state; |
| 191 scoped_ptr<ProxyService> proxy_service; | 191 scoped_ptr<ProxyService> proxy_service; |
| 192 scoped_refptr<SSLConfigService> ssl_config_service; | 192 scoped_refptr<SSLConfigService> ssl_config_service; |
| 193 scoped_ptr<MockClientSocketFactory> socket_factory; | 193 scoped_ptr<MockClientSocketFactory> socket_factory; |
| 194 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; | 194 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; |
| 195 HttpServerPropertiesImpl http_server_properties; | 195 HttpServerPropertiesImpl http_server_properties; |
| 196 bool enable_ip_pooling; | 196 bool enable_ip_pooling; |
| 197 bool enable_ping; | 197 bool enable_ping; |
| 198 bool enable_user_alternate_protocol_ports; | 198 bool enable_user_alternate_protocol_ports; |
| 199 bool enable_npn; | 199 bool enable_npn; |
| 200 bool enable_priority_dependencies; |
| 200 NextProto protocol; | 201 NextProto protocol; |
| 201 size_t session_max_recv_window_size; | 202 size_t session_max_recv_window_size; |
| 202 size_t stream_max_recv_window_size; | 203 size_t stream_max_recv_window_size; |
| 203 SpdySession::TimeFunc time_func; | 204 SpdySession::TimeFunc time_func; |
| 204 scoped_ptr<ProxyDelegate> proxy_delegate; | 205 scoped_ptr<ProxyDelegate> proxy_delegate; |
| 205 bool parse_alternative_services; | 206 bool parse_alternative_services; |
| 206 bool enable_alternative_service_with_different_host; | 207 bool enable_alternative_service_with_different_host; |
| 207 NetLog* net_log; | 208 NetLog* net_log; |
| 208 }; | 209 }; |
| 209 | 210 |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 GURL default_url_; | 550 GURL default_url_; |
| 550 bool dependency_priorities_; | 551 bool dependency_priorities_; |
| 551 | 552 |
| 552 // Track a FIFO list of the stream_id of all created requests by priority. | 553 // Track a FIFO list of the stream_id of all created requests by priority. |
| 553 std::map<int, std::vector<int>> priority_to_stream_id_list_; | 554 std::map<int, std::vector<int>> priority_to_stream_id_list_; |
| 554 }; | 555 }; |
| 555 | 556 |
| 556 } // namespace net | 557 } // namespace net |
| 557 | 558 |
| 558 #endif // NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ | 559 #endif // NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
| OLD | NEW |