| 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "chrome/browser/prefs/tracked/pref_hash_filter.h" | 15 #include "components/user_prefs/tracked/pref_hash_filter.h" |
| 16 | 16 |
| 17 class PersistentPrefStore; | 17 class PersistentPrefStore; |
| 18 class PrefHashStore; | 18 class PrefHashStore; |
| 19 class PrefService; | 19 class PrefService; |
| 20 class TrackedPreferenceValidationDelegate; | 20 class TrackedPreferenceValidationDelegate; |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class DictionaryValue; | 23 class DictionaryValue; |
| 24 class SequencedTaskRunner; | 24 class SequencedTaskRunner; |
| 25 } // namespace base | 25 } // namespace base |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 tracking_configuration_; | 112 tracking_configuration_; |
| 113 const size_t reporting_ids_count_; | 113 const size_t reporting_ids_count_; |
| 114 const std::string seed_; | 114 const std::string seed_; |
| 115 const std::string device_id_; | 115 const std::string device_id_; |
| 116 PrefService* local_state_; | 116 PrefService* local_state_; |
| 117 | 117 |
| 118 DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager); | 118 DISALLOW_COPY_AND_ASSIGN(ProfilePrefStoreManager); |
| 119 }; | 119 }; |
| 120 | 120 |
| 121 #endif // CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ | 121 #endif // CHROME_BROWSER_PREFS_PROFILE_PREF_STORE_MANAGER_H_ |
| OLD | NEW |