| OLD | NEW |
| 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 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 199 |
| 200 BooleanPrefMember system_enable_referrers_; | 200 BooleanPrefMember system_enable_referrers_; |
| 201 | 201 |
| 202 // Store HTTP Auth-related policies in this thread. | 202 // Store HTTP Auth-related policies in this thread. |
| 203 std::string auth_schemes_; | 203 std::string auth_schemes_; |
| 204 bool negotiate_disable_cname_lookup_; | 204 bool negotiate_disable_cname_lookup_; |
| 205 bool negotiate_enable_port_; | 205 bool negotiate_enable_port_; |
| 206 std::string auth_server_whitelist_; | 206 std::string auth_server_whitelist_; |
| 207 std::string auth_delegate_whitelist_; | 207 std::string auth_delegate_whitelist_; |
| 208 std::string gssapi_library_name_; | 208 std::string gssapi_library_name_; |
| 209 std::string spdyproxy_origin_; |
| 209 | 210 |
| 210 // This is an instance of the default SSLConfigServiceManager for the current | 211 // This is an instance of the default SSLConfigServiceManager for the current |
| 211 // platform and it gets SSL preferences from local_state object. | 212 // platform and it gets SSL preferences from local_state object. |
| 212 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 213 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
| 213 | 214 |
| 214 // These member variables are initialized by a task posted to the IO thread, | 215 // These member variables are initialized by a task posted to the IO thread, |
| 215 // which gets posted by calling certain member functions of IOThread. | 216 // which gets posted by calling certain member functions of IOThread. |
| 216 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; | 217 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; |
| 217 | 218 |
| 218 scoped_ptr<PrefProxyConfigTrackerImpl> pref_proxy_config_tracker_; | 219 scoped_ptr<PrefProxyConfigTrackerImpl> pref_proxy_config_tracker_; |
| 219 | 220 |
| 220 scoped_refptr<net::URLRequestContextGetter> | 221 scoped_refptr<net::URLRequestContextGetter> |
| 221 system_url_request_context_getter_; | 222 system_url_request_context_getter_; |
| 222 | 223 |
| 223 net::SdchManager* sdch_manager_; | 224 net::SdchManager* sdch_manager_; |
| 224 | 225 |
| 225 base::WeakPtrFactory<IOThread> weak_factory_; | 226 base::WeakPtrFactory<IOThread> weak_factory_; |
| 226 | 227 |
| 227 DISALLOW_COPY_AND_ASSIGN(IOThread); | 228 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 228 }; | 229 }; |
| 229 | 230 |
| 230 #endif // CHROME_BROWSER_IO_THREAD_H_ | 231 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |