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

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

Issue 763833003: Remove using namespace in net/quic/quic_stream_sequencer.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix missing part device_cloud_policy_manager_chromeos_unittest.cc Created 6 years 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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 uint16 testing_fixed_http_port; 173 uint16 testing_fixed_http_port;
174 uint16 testing_fixed_https_port; 174 uint16 testing_fixed_https_port;
175 Optional<bool> enable_tcp_fast_open_for_ssl; 175 Optional<bool> enable_tcp_fast_open_for_ssl;
176 176
177 Optional<size_t> initial_max_spdy_concurrent_streams; 177 Optional<size_t> initial_max_spdy_concurrent_streams;
178 Optional<bool> force_spdy_single_domain; 178 Optional<bool> force_spdy_single_domain;
179 Optional<bool> enable_spdy_compression; 179 Optional<bool> enable_spdy_compression;
180 Optional<bool> enable_spdy_ping_based_connection_checking; 180 Optional<bool> enable_spdy_ping_based_connection_checking;
181 Optional<net::NextProto> spdy_default_protocol; 181 Optional<net::NextProto> spdy_default_protocol;
182 net::NextProtoVector next_protos; 182 net::NextProtoVector next_protos;
183 Optional<string> trusted_spdy_proxy; 183 Optional<std::string> trusted_spdy_proxy;
184 Optional<bool> force_spdy_over_ssl; 184 Optional<bool> force_spdy_over_ssl;
185 Optional<bool> force_spdy_always; 185 Optional<bool> force_spdy_always;
186 std::set<net::HostPortPair> forced_spdy_exclusions; 186 std::set<net::HostPortPair> forced_spdy_exclusions;
187 Optional<bool> use_alternate_protocols; 187 Optional<bool> use_alternate_protocols;
188 Optional<double> alternate_protocol_probability_threshold; 188 Optional<double> alternate_protocol_probability_threshold;
189 189
190 Optional<bool> enable_quic; 190 Optional<bool> enable_quic;
191 Optional<bool> enable_quic_port_selection; 191 Optional<bool> enable_quic_port_selection;
192 Optional<bool> quic_always_require_handshake_confirmation; 192 Optional<bool> quic_always_require_handshake_confirmation;
193 Optional<bool> quic_disable_connection_pooling; 193 Optional<bool> quic_disable_connection_pooling;
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 bool is_spdy_disabled_by_policy_; 456 bool is_spdy_disabled_by_policy_;
457 457
458 const base::TimeTicks creation_time_; 458 const base::TimeTicks creation_time_;
459 459
460 base::WeakPtrFactory<IOThread> weak_factory_; 460 base::WeakPtrFactory<IOThread> weak_factory_;
461 461
462 DISALLOW_COPY_AND_ASSIGN(IOThread); 462 DISALLOW_COPY_AND_ASSIGN(IOThread);
463 }; 463 };
464 464
465 #endif // CHROME_BROWSER_IO_THREAD_H_ 465 #endif // CHROME_BROWSER_IO_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698