| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 std::string gssapi_library_name_; | 170 std::string gssapi_library_name_; |
| 171 | 171 |
| 172 // This is an instance of the default SSLConfigServiceManager for the current | 172 // This is an instance of the default SSLConfigServiceManager for the current |
| 173 // platform and it gets SSL preferences from local_state object. | 173 // platform and it gets SSL preferences from local_state object. |
| 174 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; | 174 scoped_ptr<SSLConfigServiceManager> ssl_config_service_manager_; |
| 175 | 175 |
| 176 // These member variables are initialized by a task posted to the IO thread, | 176 // These member variables are initialized by a task posted to the IO thread, |
| 177 // which gets posted by calling certain member functions of IOThread. | 177 // which gets posted by calling certain member functions of IOThread. |
| 178 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; | 178 scoped_ptr<net::ProxyConfigService> system_proxy_config_service_; |
| 179 | 179 |
| 180 scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; | 180 scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_; |
| 181 | 181 |
| 182 scoped_refptr<net::URLRequestContextGetter> | 182 scoped_refptr<net::URLRequestContextGetter> |
| 183 system_url_request_context_getter_; | 183 system_url_request_context_getter_; |
| 184 | 184 |
| 185 net::SdchManager* sdch_manager_; | 185 net::SdchManager* sdch_manager_; |
| 186 | 186 |
| 187 ScopedRunnableMethodFactory<IOThread> method_factory_; | 187 ScopedRunnableMethodFactory<IOThread> method_factory_; |
| 188 | 188 |
| 189 DISALLOW_COPY_AND_ASSIGN(IOThread); | 189 DISALLOW_COPY_AND_ASSIGN(IOThread); |
| 190 }; | 190 }; |
| 191 | 191 |
| 192 #endif // CHROME_BROWSER_IO_THREAD_H_ | 192 #endif // CHROME_BROWSER_IO_THREAD_H_ |
| OLD | NEW |