| 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 CHROME_BROWSER_PREFS_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 5 #ifndef COMPONENTS_SYNCABLE_PREFS_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| 6 #define CHROME_BROWSER_PREFS_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 6 #define COMPONENTS_SYNCABLE_PREFS_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/prefs/pref_service_factory.h" | 8 #include "base/prefs/pref_service_factory.h" |
| 9 | 9 |
| 10 class PrefModelAssociatorClient; | 10 class PrefModelAssociatorClient; |
| 11 class PrefServiceSyncable; | 11 class PrefServiceSyncable; |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class CommandLine; | 14 class CommandLine; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 | 44 |
| 45 scoped_ptr<PrefServiceSyncable> CreateSyncable( | 45 scoped_ptr<PrefServiceSyncable> CreateSyncable( |
| 46 user_prefs::PrefRegistrySyncable* registry); | 46 user_prefs::PrefRegistrySyncable* registry); |
| 47 | 47 |
| 48 private: | 48 private: |
| 49 PrefModelAssociatorClient* pref_model_associator_client_; | 49 PrefModelAssociatorClient* pref_model_associator_client_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(PrefServiceSyncableFactory); | 51 DISALLOW_COPY_AND_ASSIGN(PrefServiceSyncableFactory); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_BROWSER_PREFS_PREF_SERVICE_SYNCABLE_FACTORY_H_ | 54 #endif // COMPONENTS_SYNCABLE_PREFS_PREF_SERVICE_SYNCABLE_FACTORY_H_ |
| OLD | NEW |