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

Side by Side Diff: chrome/browser/io_thread.h

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 | « no previous file | chrome/browser/io_thread.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 CHROME_BROWSER_IO_THREAD_H_ 5 #ifndef CHROME_BROWSER_IO_THREAD_H_
6 #define CHROME_BROWSER_IO_THREAD_H_ 6 #define CHROME_BROWSER_IO_THREAD_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 // between |proxy_script_fetcher_context| and |system_request_context|. 157 // between |proxy_script_fetcher_context| and |system_request_context|.
158 scoped_refptr<net::CookieStore> system_cookie_store; 158 scoped_refptr<net::CookieStore> system_cookie_store;
159 #if defined(ENABLE_EXTENSIONS) 159 #if defined(ENABLE_EXTENSIONS)
160 scoped_refptr<extensions::EventRouterForwarder> 160 scoped_refptr<extensions::EventRouterForwarder>
161 extension_event_router_forwarder; 161 extension_event_router_forwarder;
162 #endif 162 #endif
163 scoped_ptr<net::HostMappingRules> host_mapping_rules; 163 scoped_ptr<net::HostMappingRules> host_mapping_rules;
164 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings; 164 scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings;
165 scoped_ptr<net::NetworkQualityEstimator> network_quality_estimator; 165 scoped_ptr<net::NetworkQualityEstimator> network_quality_estimator;
166 bool ignore_certificate_errors; 166 bool ignore_certificate_errors;
167 bool use_stale_while_revalidate;
168 uint16 testing_fixed_http_port; 167 uint16 testing_fixed_http_port;
169 uint16 testing_fixed_https_port; 168 uint16 testing_fixed_https_port;
170 Optional<bool> enable_tcp_fast_open_for_ssl; 169 Optional<bool> enable_tcp_fast_open_for_ssl;
171 170
172 Optional<size_t> initial_max_spdy_concurrent_streams; 171 Optional<size_t> initial_max_spdy_concurrent_streams;
173 Optional<bool> enable_spdy_compression; 172 Optional<bool> enable_spdy_compression;
174 Optional<bool> enable_spdy_ping_based_connection_checking; 173 Optional<bool> enable_spdy_ping_based_connection_checking;
175 Optional<net::NextProto> spdy_default_protocol; 174 Optional<net::NextProto> spdy_default_protocol;
176 net::NextProtoVector next_protos; 175 net::NextProtoVector next_protos;
177 Optional<std::string> trusted_spdy_proxy; 176 Optional<std::string> trusted_spdy_proxy;
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 bool is_quic_allowed_by_policy_; 479 bool is_quic_allowed_by_policy_;
481 480
482 const base::TimeTicks creation_time_; 481 const base::TimeTicks creation_time_;
483 482
484 base::WeakPtrFactory<IOThread> weak_factory_; 483 base::WeakPtrFactory<IOThread> weak_factory_;
485 484
486 DISALLOW_COPY_AND_ASSIGN(IOThread); 485 DISALLOW_COPY_AND_ASSIGN(IOThread);
487 }; 486 };
488 487
489 #endif // CHROME_BROWSER_IO_THREAD_H_ 488 #endif // CHROME_BROWSER_IO_THREAD_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698