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 22 matching lines...) Expand all Loading... |
33 class LocaleChangeGuard; | 33 class LocaleChangeGuard; |
34 class Preferences; | 34 class Preferences; |
35 class SupervisedUserTestBase; | 35 class SupervisedUserTestBase; |
36 } | 36 } |
37 #endif | 37 #endif |
38 | 38 |
39 namespace base { | 39 namespace base { |
40 class SequencedTaskRunner; | 40 class SequencedTaskRunner; |
41 } | 41 } |
42 | 42 |
| 43 namespace data_reduction_proxy { |
| 44 class DataReductionProxyParams; |
| 45 } |
| 46 |
| 47 class DataReductionProxyChromeSettings; |
| 48 |
43 namespace domain_reliability { | 49 namespace domain_reliability { |
44 class DomainReliabilityMonitor; | 50 class DomainReliabilityMonitor; |
45 } | 51 } |
46 | 52 |
47 namespace extensions { | 53 namespace extensions { |
48 class ExtensionSystem; | 54 class ExtensionSystem; |
49 } | 55 } |
50 | 56 |
51 namespace policy { | 57 namespace policy { |
52 class CloudPolicyManager; | 58 class CloudPolicyManager; |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 // components/keyed_service/content/browser_context_keyed_service_factory.* | 291 // components/keyed_service/content/browser_context_keyed_service_factory.* |
286 | 292 |
287 Profile::Delegate* delegate_; | 293 Profile::Delegate* delegate_; |
288 | 294 |
289 chrome_browser_net::Predictor* predictor_; | 295 chrome_browser_net::Predictor* predictor_; |
290 | 296 |
291 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); | 297 DISALLOW_COPY_AND_ASSIGN(ProfileImpl); |
292 }; | 298 }; |
293 | 299 |
294 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ | 300 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_ |
OLD | NEW |