| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PROFILE_PREF_STORE_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ |
| 6 #define CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ | 6 #define CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "services/preferences/public/interfaces/preferences_configuration.mojom
.h" | 17 #include "services/preferences/public/interfaces/preferences.mojom.h" |
| 18 #include "services/preferences/public/interfaces/tracked_preference_validation_d
elegate.mojom.h" | 18 #include "services/preferences/public/interfaces/tracked_preference_validation_d
elegate.mojom.h" |
| 19 | 19 |
| 20 class PersistentPrefStore; | 20 class PersistentPrefStore; |
| 21 class PrefRegistry; | 21 class PrefRegistry; |
| 22 class PrefService; | 22 class PrefService; |
| 23 | 23 |
| 24 namespace base { | 24 namespace base { |
| 25 class DictionaryValue; | 25 class DictionaryValue; |
| 26 class SequencedWorkerPool; | 26 class SequencedWorkerPool; |
| 27 } // namespace base | 27 } // namespace base |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 prefs::mojom::TrackedPreferenceValidationDelegatePtr validation_delegate); | 119 prefs::mojom::TrackedPreferenceValidationDelegatePtr validation_delegate); |
| 120 | 120 |
| 121 const base::FilePath profile_path_; | 121 const base::FilePath profile_path_; |
| 122 const std::string seed_; | 122 const std::string seed_; |
| 123 const std::string legacy_device_id_; | 123 const std::string legacy_device_id_; |
| 124 | 124 |
| 125 DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager); | 125 DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager); |
| 126 }; | 126 }; |
| 127 | 127 |
| 128 #endif // CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ | 128 #endif // CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ |
| OLD | NEW |