Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Lei Zhang | 2fdfa892 | 2021-04-22 02:15:43 | [diff] [blame] | 5 | #ifndef COMPONENTS_ONC_ONC_PREF_NAMES_H_ |
| 6 | #define COMPONENTS_ONC_ONC_PREF_NAMES_H_ |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 7 | |
Michael Ershov | 842df22 | 2021-10-13 08:19:05 | [diff] [blame] | 8 | #include "base/component_export.h" |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 9 | |
| 10 | class PrefRegistrySimple; |
| 11 | |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 12 | namespace onc { |
| 13 | |
| 14 | namespace prefs { |
| 15 | |
Michael Ershov | 842df22 | 2021-10-13 08:19:05 | [diff] [blame] | 16 | COMPONENT_EXPORT(ONC) extern const char kDeviceOpenNetworkConfiguration[]; |
| 17 | COMPONENT_EXPORT(ONC) extern const char kOpenNetworkConfiguration[]; |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 18 | |
| 19 | } // namespace prefs |
| 20 | |
Michael Ershov | 842df22 | 2021-10-13 08:19:05 | [diff] [blame] | 21 | COMPONENT_EXPORT(ONC) void RegisterPrefs(PrefRegistrySimple* registry); |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 22 | |
Michael Ershov | 842df22 | 2021-10-13 08:19:05 | [diff] [blame] | 23 | COMPONENT_EXPORT(ONC) |
Steven Bennetts | 75492d5 | 2021-12-07 21:03:51 | [diff] [blame] | 24 | void RegisterProfilePrefs(PrefRegistrySimple* registry); |
stevenjb | f22f82e | 2016-10-26 21:47:38 | [diff] [blame] | 25 | |
| 26 | } // namespace onc |
| 27 | |
Lei Zhang | 2fdfa892 | 2021-04-22 02:15:43 | [diff] [blame] | 28 | #endif // COMPONENTS_ONC_ONC_PREF_NAMES_H_ |