Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(628)

Side by Side Diff: net/http/http_network_session.h

Issue 2362233002: Remove HttpNetworkSession::enabled_protocols_. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | net/http/http_network_session.cc » ('j') | net/http/http_server_properties.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_HTTP_HTTP_NETWORK_SESSION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 SSLClientAuthCache ssl_client_auth_cache_; 292 SSLClientAuthCache ssl_client_auth_cache_;
293 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_; 293 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_;
294 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_; 294 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_;
295 QuicStreamFactory quic_stream_factory_; 295 QuicStreamFactory quic_stream_factory_;
296 SpdySessionPool spdy_session_pool_; 296 SpdySessionPool spdy_session_pool_;
297 std::unique_ptr<HttpStreamFactory> http_stream_factory_; 297 std::unique_ptr<HttpStreamFactory> http_stream_factory_;
298 std::unique_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; 298 std::unique_ptr<HttpStreamFactory> http_stream_factory_for_websocket_;
299 std::set<HttpResponseBodyDrainer*> response_drainers_; 299 std::set<HttpResponseBodyDrainer*> response_drainers_;
300 300
301 NextProtoVector next_protos_; 301 NextProtoVector next_protos_;
302 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS];
303 302
304 Params params_; 303 Params params_;
305 304
306 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; 305 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
307 }; 306 };
308 307
309 } // namespace net 308 } // namespace net
310 309
311 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 310 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « no previous file | net/http/http_network_session.cc » ('j') | net/http/http_server_properties.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698