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

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: 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 <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 uint16 testing_fixed_https_port; 169 uint16 testing_fixed_https_port;
170 Optional<bool> enable_tcp_fast_open_for_ssl; 170 Optional<bool> enable_tcp_fast_open_for_ssl;
171 171
172 Optional<size_t> initial_max_spdy_concurrent_streams; 172 Optional<size_t> initial_max_spdy_concurrent_streams;
173 Optional<bool> enable_spdy_compression; 173 Optional<bool> enable_spdy_compression;
174 Optional<bool> enable_spdy_ping_based_connection_checking; 174 Optional<bool> enable_spdy_ping_based_connection_checking;
175 Optional<net::NextProto> spdy_default_protocol; 175 Optional<net::NextProto> spdy_default_protocol;
176 net::NextProtoVector next_protos; 176 net::NextProtoVector next_protos;
177 Optional<std::string> trusted_spdy_proxy; 177 Optional<std::string> trusted_spdy_proxy;
178 std::set<net::HostPortPair> forced_spdy_exclusions; 178 std::set<net::HostPortPair> forced_spdy_exclusions;
179 Optional<bool> use_alternate_protocols; 179 Optional<bool> use_alternative_services;
180 Optional<double> alternative_service_probability_threshold; 180 Optional<double> alternative_service_probability_threshold;
181 181
182 Optional<bool> enable_quic; 182 Optional<bool> enable_quic;
183 Optional<bool> enable_insecure_quic; 183 Optional<bool> enable_insecure_quic;
184 Optional<bool> enable_quic_for_proxies; 184 Optional<bool> enable_quic_for_proxies;
185 Optional<bool> enable_quic_port_selection; 185 Optional<bool> enable_quic_port_selection;
186 Optional<bool> quic_always_require_handshake_confirmation; 186 Optional<bool> quic_always_require_handshake_confirmation;
187 Optional<bool> quic_disable_connection_pooling; 187 Optional<bool> quic_disable_connection_pooling;
188 Optional<float> quic_load_server_info_timeout_srtt_multiplier; 188 Optional<float> quic_load_server_info_timeout_srtt_multiplier;
189 Optional<bool> quic_enable_connection_racing; 189 Optional<bool> quic_enable_connection_racing;
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 bool is_quic_allowed_by_policy_; 482 bool is_quic_allowed_by_policy_;
483 483
484 const base::TimeTicks creation_time_; 484 const base::TimeTicks creation_time_;
485 485
486 base::WeakPtrFactory<IOThread> weak_factory_; 486 base::WeakPtrFactory<IOThread> weak_factory_;
487 487
488 DISALLOW_COPY_AND_ASSIGN(IOThread); 488 DISALLOW_COPY_AND_ASSIGN(IOThread);
489 }; 489 };
490 490
491 #endif // CHROME_BROWSER_IO_THREAD_H_ 491 #endif // CHROME_BROWSER_IO_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698