| 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 <string> | 10 #include <string> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 class LocaleChangeGuard; | 34 class LocaleChangeGuard; |
| 35 class Preferences; | 35 class Preferences; |
| 36 class SupervisedUserTestBase; | 36 class SupervisedUserTestBase; |
| 37 } | 37 } |
| 38 #endif | 38 #endif |
| 39 | 39 |
| 40 namespace base { | 40 namespace base { |
| 41 class SequencedTaskRunner; | 41 class SequencedTaskRunner; |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace data_reduction_proxy { | |
| 45 class DataReductionProxyParams; | |
| 46 } | |
| 47 | |
| 48 class DataReductionProxyChromeSettings; | |
| 49 | |
| 50 namespace domain_reliability { | 44 namespace domain_reliability { |
| 51 class DomainReliabilityMonitor; | 45 class DomainReliabilityMonitor; |
| 52 } | 46 } |
| 53 | 47 |
| 54 namespace extensions { | 48 namespace extensions { |
| 55 class ExtensionSystem; | 49 class ExtensionSystem; |
| 56 } | 50 } |
| 57 | 51 |
| 58 namespace policy { | 52 namespace policy { |
| 59 class CloudPolicyManager; | 53 class CloudPolicyManager; |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 // components/keyed_service/content/browser_context_keyed_service_factory.* | 276 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 283 | 277 |
| 284 Profile::Delegate* delegate_; | 278 Profile::Delegate* delegate_; |
| 285 | 279 |
| 286 chrome_browser_net::Predictor* predictor_; | 280 chrome_browser_net::Predictor* predictor_; |
| 287 | 281 |
| 288 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 282 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 289 }; | 283 }; |
| 290 | 284 |
| 291 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 285 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |