| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 5 #ifndef COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| 6 #define COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 6 #define COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "components/prefs/pref_service_factory.h" | 11 #include "components/prefs/pref_service_factory.h" |
| 12 | 12 |
| 13 namespace base { | |
| 14 class CommandLine; | |
| 15 } | |
| 16 | |
| 17 namespace policy { | 13 namespace policy { |
| 18 class BrowserPolicyConnector; | 14 class BrowserPolicyConnector; |
| 19 class PolicyService; | 15 class PolicyService; |
| 20 } | 16 } |
| 21 | 17 |
| 22 namespace user_prefs { | 18 namespace user_prefs { |
| 23 class PrefRegistrySyncable; | 19 class PrefRegistrySyncable; |
| 24 } | 20 } |
| 25 | 21 |
| 26 namespace sync_preferences { | 22 namespace sync_preferences { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 51 | 47 |
| 52 private: | 48 private: |
| 53 PrefModelAssociatorClient* pref_model_associator_client_; | 49 PrefModelAssociatorClient* pref_model_associator_client_; |
| 54 | 50 |
| 55 DISALLOW_COPY_AND_ASSIGN(PrefServiceSyncableFactory); | 51 DISALLOW_COPY_AND_ASSIGN(PrefServiceSyncableFactory); |
| 56 }; | 52 }; |
| 57 | 53 |
| 58 } // namespace sync_preferences | 54 } // namespace sync_preferences |
| 59 | 55 |
| 60 #endif // COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 56 #endif // COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| OLD | NEW |