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" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 12 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
13 #include "chrome/browser/net/chrome_url_request_context_getter.h" | 13 #include "chrome/browser/net/chrome_url_request_context_getter.h" |
14 #include "chrome/browser/profiles/profile_io_data.h" | 14 #include "chrome/browser/profiles/profile_io_data.h" |
15 #include "content/public/browser/cookie_store_factory.h" | 15 #include "content/public/browser/cookie_store_factory.h" |
16 | 16 |
| 17 class ChromeSdchPolicy; |
| 18 |
17 namespace chrome_browser_net { | 19 namespace chrome_browser_net { |
18 class Predictor; | 20 class Predictor; |
19 } // namespace chrome_browser_net | 21 } // namespace chrome_browser_net |
20 | 22 |
21 namespace content { | 23 namespace content { |
22 class CookieCryptoDelegate; | 24 class CookieCryptoDelegate; |
23 } // namespace content | 25 } // namespace content |
24 | 26 |
25 namespace domain_reliability { | 27 namespace domain_reliability { |
26 class DomainReliabilityMonitor; | 28 class DomainReliabilityMonitor; |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 | 231 |
230 mutable scoped_ptr<net::URLRequestContext> media_request_context_; | 232 mutable scoped_ptr<net::URLRequestContext> media_request_context_; |
231 | 233 |
232 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; | 234 mutable scoped_ptr<net::URLRequestJobFactory> main_job_factory_; |
233 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; | 235 mutable scoped_ptr<net::URLRequestJobFactory> extensions_job_factory_; |
234 | 236 |
235 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> | 237 mutable scoped_ptr<domain_reliability::DomainReliabilityMonitor> |
236 domain_reliability_monitor_; | 238 domain_reliability_monitor_; |
237 | 239 |
238 mutable scoped_ptr<net::SdchManager> sdch_manager_; | 240 mutable scoped_ptr<net::SdchManager> sdch_manager_; |
| 241 mutable scoped_ptr<ChromeSdchPolicy> sdch_policy_; |
239 | 242 |
240 mutable BooleanPrefMember data_reduction_proxy_enabled_; | 243 mutable BooleanPrefMember data_reduction_proxy_enabled_; |
241 | 244 |
242 // Parameters needed for isolated apps. | 245 // Parameters needed for isolated apps. |
243 base::FilePath profile_path_; | 246 base::FilePath profile_path_; |
244 int app_cache_max_size_; | 247 int app_cache_max_size_; |
245 int app_media_cache_max_size_; | 248 int app_media_cache_max_size_; |
246 | 249 |
247 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 250 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
248 }; | 251 }; |
249 | 252 |
250 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 253 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
OLD | NEW |