| 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 12 matching lines...) Expand all Loading... |
| 23 } // namespace content | 23 } // namespace content |
| 24 | 24 |
| 25 namespace domain_reliability { | 25 namespace domain_reliability { |
| 26 class DomainReliabilityMonitor; | 26 class DomainReliabilityMonitor; |
| 27 } // namespace domain_reliability | 27 } // namespace domain_reliability |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 class FtpTransactionFactory; | 30 class FtpTransactionFactory; |
| 31 class HttpServerProperties; | 31 class HttpServerProperties; |
| 32 class HttpTransactionFactory; | 32 class HttpTransactionFactory; |
| 33 class SDCHManager; |
| 33 } // namespace net | 34 } // namespace net |
| 34 | 35 |
| 35 namespace quota { | 36 namespace quota { |
| 36 class SpecialStoragePolicy; | 37 class SpecialStoragePolicy; |
| 37 } // namespace quota | 38 } // namespace quota |
| 38 | 39 |
| 39 class ProfileImplIOData : public ProfileIOData { | 40 class ProfileImplIOData : public ProfileIOData { |
| 40 public: | 41 public: |
| 41 class Handle { | 42 class Handle { |
| 42 public: | 43 public: |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; | 211 mutable scoped_ptr<chrome_browser_net::Predictor> predictor_; |
| 211 | 212 |
| 212 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; | 213 mutable scoped_ptr<ChromeURLRequestContext> media_request_context_; |
| 213 | 214 |
| 214 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 215 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
| 215 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; | 216 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; |
| 216 | 217 |
| 217 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> | 218 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> |
| 218 domain_reliability_monitor_; | 219 domain_reliability_monitor_; |
| 219 | 220 |
| 221 mutable scoped_ptr<net::SdchManager> sdch_manager_; |
| 222 |
| 220 // Parameters needed for isolated apps. | 223 // Parameters needed for isolated apps. |
| 221 base::FilePath profile_path_; | 224 base::FilePath profile_path_; |
| 222 int app_cache_max_size_; | 225 int app_cache_max_size_; |
| 223 int app_media_cache_max_size_; | 226 int app_media_cache_max_size_; |
| 224 | 227 |
| 225 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 228 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
| 226 }; | 229 }; |
| 227 | 230 |
| 228 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 231 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| OLD | NEW |