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

Side by Side Diff: ios/chrome/browser/ios_chrome_io_thread.h

Issue 2546533003: Respect QuicAllowed policy for new streams (Closed)
Patch Set: IOS io_thread also initializes DynamicSharedParams Created 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_
6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 // used to enforce pinning for system requests and will only use built-in 109 // used to enforce pinning for system requests and will only use built-in
110 // pins. 110 // pins.
111 std::unique_ptr<net::TransportSecurityState> transport_security_state; 111 std::unique_ptr<net::TransportSecurityState> transport_security_state;
112 std::unique_ptr<net::CTVerifier> cert_transparency_verifier; 112 std::unique_ptr<net::CTVerifier> cert_transparency_verifier;
113 scoped_refptr<net::SSLConfigService> ssl_config_service; 113 scoped_refptr<net::SSLConfigService> ssl_config_service;
114 std::unique_ptr<net::HttpAuthPreferences> http_auth_preferences; 114 std::unique_ptr<net::HttpAuthPreferences> http_auth_preferences;
115 std::unique_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory; 115 std::unique_ptr<net::HttpAuthHandlerFactory> http_auth_handler_factory;
116 std::unique_ptr<net::HttpServerProperties> http_server_properties; 116 std::unique_ptr<net::HttpServerProperties> http_server_properties;
117 std::unique_ptr<net::ProxyService> system_proxy_service; 117 std::unique_ptr<net::ProxyService> system_proxy_service;
118 std::unique_ptr<net::HttpNetworkSession> system_http_network_session; 118 std::unique_ptr<net::HttpNetworkSession> system_http_network_session;
119 std::unique_ptr<net::HttpNetworkSession::DynamicSharedParams>
120 http_network_session_dynamic_shared_params;
119 std::unique_ptr<net::HttpTransactionFactory> 121 std::unique_ptr<net::HttpTransactionFactory>
120 system_http_transaction_factory; 122 system_http_transaction_factory;
121 std::unique_ptr<net::URLRequestJobFactory> system_url_request_job_factory; 123 std::unique_ptr<net::URLRequestJobFactory> system_url_request_job_factory;
122 std::unique_ptr<net::URLRequestContext> system_request_context; 124 std::unique_ptr<net::URLRequestContext> system_request_context;
123 SystemRequestContextLeakChecker system_request_context_leak_checker; 125 SystemRequestContextLeakChecker system_request_context_leak_checker;
124 std::unique_ptr<net::CookieStore> system_cookie_store; 126 std::unique_ptr<net::CookieStore> system_cookie_store;
125 std::unique_ptr<net::HttpUserAgentSettings> http_user_agent_settings; 127 std::unique_ptr<net::HttpUserAgentSettings> http_user_agent_settings;
126 std::unique_ptr<net::NetworkQualityEstimator> network_quality_estimator; 128 std::unique_ptr<net::NetworkQualityEstimator> network_quality_estimator;
127 std::unique_ptr<net::CTPolicyEnforcer> ct_policy_enforcer; 129 std::unique_ptr<net::CTPolicyEnforcer> ct_policy_enforcer;
128 }; 130 };
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 system_url_request_context_getter_; 227 system_url_request_context_getter_;
226 228
227 const base::TimeTicks creation_time_; 229 const base::TimeTicks creation_time_;
228 230
229 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; 231 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_;
230 232
231 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); 233 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread);
232 }; 234 };
233 235
234 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ 236 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698