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

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

Issue 1268313004: s/use_alternate_protocols/use_alternative_services/g (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #15. Created 5 years, 4 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
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 <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 uint16 testing_fixed_https_port; 170 uint16 testing_fixed_https_port;
171 Optional<bool> enable_tcp_fast_open_for_ssl; 171 Optional<bool> enable_tcp_fast_open_for_ssl;
172 172
173 Optional<size_t> initial_max_spdy_concurrent_streams; 173 Optional<size_t> initial_max_spdy_concurrent_streams;
174 Optional<bool> enable_spdy_compression; 174 Optional<bool> enable_spdy_compression;
175 Optional<bool> enable_spdy_ping_based_connection_checking; 175 Optional<bool> enable_spdy_ping_based_connection_checking;
176 Optional<net::NextProto> spdy_default_protocol; 176 Optional<net::NextProto> spdy_default_protocol;
177 net::NextProtoVector next_protos; 177 net::NextProtoVector next_protos;
178 Optional<std::string> trusted_spdy_proxy; 178 Optional<std::string> trusted_spdy_proxy;
179 std::set<net::HostPortPair> forced_spdy_exclusions; 179 std::set<net::HostPortPair> forced_spdy_exclusions;
180 Optional<bool> use_alternate_protocols; 180 Optional<bool> use_alternative_services;
181 Optional<double> alternative_service_probability_threshold; 181 Optional<double> alternative_service_probability_threshold;
182 182
183 Optional<bool> enable_quic; 183 Optional<bool> enable_quic;
184 Optional<bool> enable_insecure_quic; 184 Optional<bool> enable_insecure_quic;
185 Optional<bool> enable_quic_for_proxies; 185 Optional<bool> enable_quic_for_proxies;
186 Optional<bool> enable_quic_port_selection; 186 Optional<bool> enable_quic_port_selection;
187 Optional<bool> quic_always_require_handshake_confirmation; 187 Optional<bool> quic_always_require_handshake_confirmation;
188 Optional<bool> quic_disable_connection_pooling; 188 Optional<bool> quic_disable_connection_pooling;
189 Optional<float> quic_load_server_info_timeout_srtt_multiplier; 189 Optional<float> quic_load_server_info_timeout_srtt_multiplier;
190 Optional<bool> quic_enable_connection_racing; 190 Optional<bool> quic_enable_connection_racing;
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 bool is_quic_allowed_by_policy_; 483 bool is_quic_allowed_by_policy_;
484 484
485 const base::TimeTicks creation_time_; 485 const base::TimeTicks creation_time_;
486 486
487 base::WeakPtrFactory<IOThread> weak_factory_; 487 base::WeakPtrFactory<IOThread> weak_factory_;
488 488
489 DISALLOW_COPY_AND_ASSIGN(IOThread); 489 DISALLOW_COPY_AND_ASSIGN(IOThread);
490 }; 490 };
491 491
492 #endif // CHROME_BROWSER_IO_THREAD_H_ 492 #endif // CHROME_BROWSER_IO_THREAD_H_
OLDNEW
« no previous file with comments | « android_webview/browser/net/aw_url_request_context_getter.cc ('k') | chrome/browser/io_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698