| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 SERVICES_PREFERENCES_PUBLIC_CPP_USER_PREFS_IMPL_H_ | 5 #ifndef SERVICES_PREFERENCES_PUBLIC_CPP_USER_PREFS_IMPL_H_ |
| 6 #define SERVICES_PREFERENCES_PUBLIC_CPP_USER_PREFS_IMPL_H_ | 6 #define SERVICES_PREFERENCES_PUBLIC_CPP_USER_PREFS_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 void CreateSegregatedUserPrefs( | 38 void CreateSegregatedUserPrefs( |
| 39 const base::FilePath& unprotected_pref_filename, | 39 const base::FilePath& unprotected_pref_filename, |
| 40 const base::FilePath& protected_pref_filename, | 40 const base::FilePath& protected_pref_filename, |
| 41 const std::vector<PrefHashFilter::TrackedPreferenceMetadata>& | 41 const std::vector<PrefHashFilter::TrackedPreferenceMetadata>& |
| 42 tracking_configuration, | 42 tracking_configuration, |
| 43 size_t reporting_ids_count, | 43 size_t reporting_ids_count, |
| 44 const std::string& seed, | 44 const std::string& seed, |
| 45 const std::string& legacy_device_id, | 45 const std::string& legacy_device_id, |
| 46 const base::string16& registry_path, | 46 const base::string16& registry_path, |
| 47 mojom::TrackedPreferenceValidationDelegatePtr validation_delegate, | 47 mojom::TrackedPreferenceValidationDelegatePtr validation_delegate, |
| 48 const base::Closure& on_reset_on_load, | 48 mojom::ResetOnLoadObserverPtr reset_on_load_observer, |
| 49 const scoped_refptr<base::SingleThreadTaskRunner>& connection_task_runner, | 49 const scoped_refptr<base::SingleThreadTaskRunner>& connection_task_runner, |
| 50 const scoped_refptr<base::SequencedTaskRunner>& io_task_runner, | 50 const scoped_refptr<base::SequencedTaskRunner>& io_task_runner, |
| 51 mojom::PersistentPrefStoreConnectorRequest request); | 51 mojom::PersistentPrefStoreConnectorRequest request); |
| 52 | 52 |
| 53 } // namespace prefs | 53 } // namespace prefs |
| 54 | 54 |
| 55 #endif // SERVICES_PREFERENCES_PUBLIC_CPP_USER_PREFS_IMPL_H_ | 55 #endif // SERVICES_PREFERENCES_PUBLIC_CPP_USER_PREFS_IMPL_H_ |
| OLD | NEW |