| 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/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 mutable std::unique_ptr<net::CookieStore> main_cookie_store_; | 226 mutable std::unique_ptr<net::CookieStore> main_cookie_store_; |
| 227 mutable std::unique_ptr<net::CookieStore> extensions_cookie_store_; | 227 mutable std::unique_ptr<net::CookieStore> extensions_cookie_store_; |
| 228 | 228 |
| 229 mutable std::unique_ptr<chrome_browser_net::Predictor> predictor_; | 229 mutable std::unique_ptr<chrome_browser_net::Predictor> predictor_; |
| 230 | 230 |
| 231 mutable std::unique_ptr<net::URLRequestContext> media_request_context_; | 231 mutable std::unique_ptr<net::URLRequestContext> media_request_context_; |
| 232 | 232 |
| 233 mutable std::unique_ptr<net::URLRequestJobFactory> main_job_factory_; | 233 mutable std::unique_ptr<net::URLRequestJobFactory> main_job_factory_; |
| 234 mutable std::unique_ptr<net::URLRequestJobFactory> extensions_job_factory_; | 234 mutable std::unique_ptr<net::URLRequestJobFactory> extensions_job_factory_; |
| 235 | 235 |
| 236 mutable std::unique_ptr<domain_reliability::DomainReliabilityMonitor> | 236 // Owned by ChromeNetworkDelegate (which is owned by |network_delegate_|). |
| 237 mutable domain_reliability::DomainReliabilityMonitor* |
| 237 domain_reliability_monitor_; | 238 domain_reliability_monitor_; |
| 238 | 239 |
| 239 mutable std::unique_ptr<net::SdchManager> sdch_manager_; | 240 mutable std::unique_ptr<net::SdchManager> sdch_manager_; |
| 240 mutable std::unique_ptr<net::SdchOwner> sdch_policy_; | 241 mutable std::unique_ptr<net::SdchOwner> sdch_policy_; |
| 241 | 242 |
| 242 // Parameters needed for isolated apps. | 243 // Parameters needed for isolated apps. |
| 243 base::FilePath profile_path_; | 244 base::FilePath profile_path_; |
| 244 int app_cache_max_size_; | 245 int app_cache_max_size_; |
| 245 int app_media_cache_max_size_; | 246 int app_media_cache_max_size_; |
| 246 | 247 |
| 247 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 248 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
| 248 }; | 249 }; |
| 249 | 250 |
| 250 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 251 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| OLD | NEW |