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

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

Issue 2692813002: Server push cancellation: add a finch trial parameter (Closed)
Patch Set: Spin the message loop to ensure the client receives the response Created 3 years, 8 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 | « net/http/http_cache.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 public base::MemoryCoordinatorClient { 78 public base::MemoryCoordinatorClient {
79 public: 79 public:
80 struct NET_EXPORT Params { 80 struct NET_EXPORT Params {
81 Params(); 81 Params();
82 Params(const Params& other); 82 Params(const Params& other);
83 ~Params(); 83 ~Params();
84 84
85 ClientSocketFactory* client_socket_factory; 85 ClientSocketFactory* client_socket_factory;
86 HostResolver* host_resolver; 86 HostResolver* host_resolver;
87 CertVerifier* cert_verifier; 87 CertVerifier* cert_verifier;
88 bool enable_server_push_cancellation;
88 ChannelIDService* channel_id_service; 89 ChannelIDService* channel_id_service;
89 TransportSecurityState* transport_security_state; 90 TransportSecurityState* transport_security_state;
90 CTVerifier* cert_transparency_verifier; 91 CTVerifier* cert_transparency_verifier;
91 CTPolicyEnforcer* ct_policy_enforcer; 92 CTPolicyEnforcer* ct_policy_enforcer;
92 ProxyService* proxy_service; 93 ProxyService* proxy_service;
93 SSLConfigService* ssl_config_service; 94 SSLConfigService* ssl_config_service;
94 HttpAuthHandlerFactory* http_auth_handler_factory; 95 HttpAuthHandlerFactory* http_auth_handler_factory;
95 HttpServerProperties* http_server_properties; 96 HttpServerProperties* http_server_properties;
96 NetLog* net_log; 97 NetLog* net_log;
97 HostMappingRules* host_mapping_rules; 98 HostMappingRules* host_mapping_rules;
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 NextProtoVector next_protos_; 351 NextProtoVector next_protos_;
351 352
352 Params params_; 353 Params params_;
353 354
354 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; 355 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
355 }; 356 };
356 357
357 } // namespace net 358 } // namespace net
358 359
359 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 360 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « net/http/http_cache.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698