| 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 BASE_PREFS_PREF_SERVICE_FACTORY_H_ | 5 #ifndef BASE_PREFS_PREF_SERVICE_FACTORY_H_ |
| 6 #define BASE_PREFS_PREF_SERVICE_FACTORY_H_ | 6 #define BASE_PREFS_PREF_SERVICE_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/prefs/base_prefs_export.h" | 11 #include "base/prefs/base_prefs_export.h" |
| 12 #include "base/prefs/persistent_pref_store.h" | 12 #include "base/prefs/persistent_pref_store.h" |
| 13 #include "base/prefs/pref_registry.h" | 13 #include "base/prefs/pref_registry.h" |
| 14 #include "base/prefs/pref_store.h" | 14 #include "base/prefs/pref_store.h" |
| 15 | 15 |
| 16 class PrefService; | 16 class PrefService; |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 | 19 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 // Defaults to false. | 82 // Defaults to false. |
| 83 bool async_; | 83 bool async_; |
| 84 | 84 |
| 85 private: | 85 private: |
| 86 DISALLOW_COPY_AND_ASSIGN(PrefServiceFactory); | 86 DISALLOW_COPY_AND_ASSIGN(PrefServiceFactory); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 } // namespace base | 89 } // namespace base |
| 90 | 90 |
| 91 #endif // BASE_PREFS_PREF_SERVICE_FACTORY_H_ | 91 #endif // BASE_PREFS_PREF_SERVICE_FACTORY_H_ |
| OLD | NEW |