| 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/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } // namespace content | 24 } // namespace content |
| 25 | 25 |
| 26 namespace domain_reliability { | 26 namespace domain_reliability { |
| 27 class DomainReliabilityMonitor; | 27 class DomainReliabilityMonitor; |
| 28 } // namespace domain_reliability | 28 } // namespace domain_reliability |
| 29 | 29 |
| 30 namespace net { | 30 namespace net { |
| 31 class FtpTransactionFactory; | 31 class FtpTransactionFactory; |
| 32 class HttpServerProperties; | 32 class HttpServerProperties; |
| 33 class HttpTransactionFactory; | 33 class HttpTransactionFactory; |
| 34 class SDCHManager; |
| 34 } // namespace net | 35 } // namespace net |
| 35 | 36 |
| 36 namespace quota { | 37 namespace quota { |
| 37 class SpecialStoragePolicy; | 38 class SpecialStoragePolicy; |
| 38 } // namespace quota | 39 } // namespace quota |
| 39 | 40 |
| 40 class ProfileImplIOData : public ProfileIOData { | 41 class ProfileImplIOData : public ProfileIOData { |
| 41 public: | 42 public: |
| 42 class Handle { | 43 class Handle { |
| 43 public: | 44 public: |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; | 228 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; |
| 228 | 229 |
| 229 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; | 230 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; |
| 230 | 231 |
| 231 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 232 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
| 232 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; | 233 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; |
| 233 | 234 |
| 234 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> | 235 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> |
| 235 domain_reliability_monitor_; | 236 domain_reliability_monitor_; |
| 236 | 237 |
| 238 mutable scoped_ptr<net::SdchManager> sdch_manager_; |
| 239 |
| 237 // Parameters needed for isolated apps. | 240 // Parameters needed for isolated apps. |
| 238 base::FilePath profile_path_; | 241 base::FilePath profile_path_; |
| 239 int app_cache_max_size_; | 242 int app_cache_max_size_; |
| 240 int app_media_cache_max_size_; | 243 int app_media_cache_max_size_; |
| 241 | 244 |
| 242 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 245 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
| 243 }; | 246 }; |
| 244 | 247 |
| 245 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 248 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| OLD | NEW |