| 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 #include "services/preferences/public/interfaces/preferences.mojom.h" |
| 12 | 13 |
| 13 namespace policy { | 14 namespace policy { |
| 14 class BrowserPolicyConnector; | 15 class BrowserPolicyConnector; |
| 15 class PolicyService; | 16 class PolicyService; |
| 16 } | 17 } |
| 17 | 18 |
| 18 namespace service_manager { | 19 namespace service_manager { |
| 19 class Connector; | 20 class Connector; |
| 20 } | 21 } |
| 21 | 22 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 55 |
| 55 private: | 56 private: |
| 56 PrefModelAssociatorClient* pref_model_associator_client_; | 57 PrefModelAssociatorClient* pref_model_associator_client_; |
| 57 | 58 |
| 58 DISALLOW_COPY_AND_ASSIGN(PrefServiceSyncableFactory); | 59 DISALLOW_COPY_AND_ASSIGN(PrefServiceSyncableFactory); |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 } // namespace sync_preferences | 62 } // namespace sync_preferences |
| 62 | 63 |
| 63 #endif // COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 64 #endif // COMPONENTS_SYNC_PREFERENCES_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| OLD | NEW |