Chromium Code Reviews| 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 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/hash_tables.h" | 10 #include "base/hash_tables.h" |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 169 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; | 169 mutable scoped_ptr<net::FtpTransactionFactory> ftp_factory_; |
| 170 | 170 |
| 171 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; | 171 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; |
| 172 | 172 |
| 173 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; | 173 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; |
| 174 | 174 |
| 175 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 175 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
| 176 mutable scoped_ptr<net::URLRequestJobFactory> media_request_job_factory_; | 176 mutable scoped_ptr<net::URLRequestJobFactory> media_request_job_factory_; |
| 177 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; | 177 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; |
| 178 | 178 |
| 179 mutable scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings_; | |
|
erikwright (departed)
2012/09/25 21:06:38
no longer required?
| |
| 180 | |
| 179 // Parameters needed for isolated apps. | 181 // Parameters needed for isolated apps. |
| 180 FilePath profile_path_; | 182 FilePath profile_path_; |
| 181 int app_cache_max_size_; | 183 int app_cache_max_size_; |
| 182 int app_media_cache_max_size_; | 184 int app_media_cache_max_size_; |
| 183 | 185 |
| 184 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 186 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
| 185 }; | 187 }; |
| 186 | 188 |
| 187 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 189 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| OLD | NEW |