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_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 | 143 |
144 // Clears the networking history since |time|. | 144 // Clears the networking history since |time|. |
145 void ClearNetworkingHistorySinceOnIOThread(base::Time time); | 145 void ClearNetworkingHistorySinceOnIOThread(base::Time time); |
146 | 146 |
147 // Lazy initialization params. | 147 // Lazy initialization params. |
148 mutable scoped_ptr<LazyParams> lazy_params_; | 148 mutable scoped_ptr<LazyParams> lazy_params_; |
149 | 149 |
150 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; | 150 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; |
151 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; | 151 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; |
152 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; | 152 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; |
| 153 mutable scoped_ptr<net::FtpAuthCache> ftp_auth_cache_; |
153 | 154 |
154 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; | 155 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; |
155 | 156 |
156 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; | 157 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; |
157 | 158 |
158 // Parameters needed for isolated apps. | 159 // Parameters needed for isolated apps. |
159 FilePath app_path_; | 160 FilePath app_path_; |
160 mutable bool clear_local_state_on_exit_; | 161 mutable bool clear_local_state_on_exit_; |
161 | 162 |
162 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 163 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
163 }; | 164 }; |
164 | 165 |
165 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 166 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
OLD | NEW |