| 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 // This class gathers state related to a single user profile. | 5 // This class gathers state related to a single user profile. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 8 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 namespace base { | 41 namespace base { |
| 42 class SequencedTaskRunner; | 42 class SequencedTaskRunner; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace domain_reliability { | 45 namespace domain_reliability { |
| 46 class DomainReliabilityMonitor; | 46 class DomainReliabilityMonitor; |
| 47 } | 47 } |
| 48 | 48 |
| 49 namespace extensions { | |
| 50 class ExtensionSystem; | |
| 51 } | |
| 52 | |
| 53 namespace policy { | 49 namespace policy { |
| 54 class CloudPolicyManager; | 50 class CloudPolicyManager; |
| 55 class ProfilePolicyConnector; | 51 class ProfilePolicyConnector; |
| 56 class SchemaRegistryService; | 52 class SchemaRegistryService; |
| 57 } | 53 } |
| 58 | 54 |
| 59 namespace ssl_config { | 55 namespace ssl_config { |
| 60 class SSLConfigServiceManager; | 56 class SSLConfigServiceManager; |
| 61 } | 57 } |
| 62 | 58 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 // components/keyed_service/content/browser_context_keyed_service_factory.* | 266 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 271 | 267 |
| 272 Profile::Delegate* delegate_; | 268 Profile::Delegate* delegate_; |
| 273 | 269 |
| 274 chrome_browser_net::Predictor* predictor_; | 270 chrome_browser_net::Predictor* predictor_; |
| 275 | 271 |
| 276 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 272 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 277 }; | 273 }; |
| 278 | 274 |
| 279 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 275 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |