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

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

Issue 1041763002: Remove stale-while-revalidate experimental implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 6 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_network_session.h ('k') | net/log/net_log_event_type_list.h » ('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 #include "net/http/http_network_session.h" 5 #include "net/http/http_network_session.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/debug/stack_trace.h" 10 #include "base/debug/stack_trace.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 channel_id_service(NULL), 68 channel_id_service(NULL),
69 transport_security_state(NULL), 69 transport_security_state(NULL),
70 cert_transparency_verifier(NULL), 70 cert_transparency_verifier(NULL),
71 proxy_service(NULL), 71 proxy_service(NULL),
72 ssl_config_service(NULL), 72 ssl_config_service(NULL),
73 http_auth_handler_factory(NULL), 73 http_auth_handler_factory(NULL),
74 network_delegate(NULL), 74 network_delegate(NULL),
75 net_log(NULL), 75 net_log(NULL),
76 host_mapping_rules(NULL), 76 host_mapping_rules(NULL),
77 ignore_certificate_errors(false), 77 ignore_certificate_errors(false),
78 use_stale_while_revalidate(false),
79 testing_fixed_http_port(0), 78 testing_fixed_http_port(0),
80 testing_fixed_https_port(0), 79 testing_fixed_https_port(0),
81 enable_tcp_fast_open_for_ssl(false), 80 enable_tcp_fast_open_for_ssl(false),
82 enable_spdy_compression(true), 81 enable_spdy_compression(true),
83 enable_spdy_ping_based_connection_checking(true), 82 enable_spdy_ping_based_connection_checking(true),
84 spdy_default_protocol(kProtoUnknown), 83 spdy_default_protocol(kProtoUnknown),
85 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), 84 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize),
86 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), 85 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize),
87 spdy_initial_max_concurrent_streams(0), 86 spdy_initial_max_concurrent_streams(0),
88 time_func(&base::TimeTicks::Now), 87 time_func(&base::TimeTicks::Now),
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 case WEBSOCKET_SOCKET_POOL: 322 case WEBSOCKET_SOCKET_POOL:
324 return websocket_socket_pool_manager_.get(); 323 return websocket_socket_pool_manager_.get();
325 default: 324 default:
326 NOTREACHED(); 325 NOTREACHED();
327 break; 326 break;
328 } 327 }
329 return NULL; 328 return NULL;
330 } 329 }
331 330
332 } // namespace net 331 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_session.h ('k') | net/log/net_log_event_type_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698