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

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

Issue 2751623002: Revert of Server push cancellation: add a finch trial parameter (patchset #14 id:280001 of https://… (Closed)
Patch Set: Created 3 years, 9 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;
89 ChannelIDService* channel_id_service; 88 ChannelIDService* channel_id_service;
90 TransportSecurityState* transport_security_state; 89 TransportSecurityState* transport_security_state;
91 CTVerifier* cert_transparency_verifier; 90 CTVerifier* cert_transparency_verifier;
92 CTPolicyEnforcer* ct_policy_enforcer; 91 CTPolicyEnforcer* ct_policy_enforcer;
93 ProxyService* proxy_service; 92 ProxyService* proxy_service;
94 SSLConfigService* ssl_config_service; 93 SSLConfigService* ssl_config_service;
95 HttpAuthHandlerFactory* http_auth_handler_factory; 94 HttpAuthHandlerFactory* http_auth_handler_factory;
96 HttpServerProperties* http_server_properties; 95 HttpServerProperties* http_server_properties;
97 NetLog* net_log; 96 NetLog* net_log;
98 HostMappingRules* host_mapping_rules; 97 HostMappingRules* host_mapping_rules;
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 NextProtoVector next_protos_; 346 NextProtoVector next_protos_;
348 347
349 Params params_; 348 Params params_;
350 349
351 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; 350 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
352 }; 351 };
353 352
354 } // namespace net 353 } // namespace net
355 354
356 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 355 #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