| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 // components/keyed_service/content/browser_context_keyed_service_factory.* | 277 // components/keyed_service/content/browser_context_keyed_service_factory.* |
| 284 | 278 |
| 285 Profile::Delegate* delegate_; | 279 Profile::Delegate* delegate_; |
| 286 | 280 |
| 287 chrome_browser_net::Predictor* predictor_; | 281 chrome_browser_net::Predictor* predictor_; |
| 288 | 282 |
| 289 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 283 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
| 290 }; | 284 }; |
| 291 | 285 |
| 292 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 286 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
| OLD | NEW |