blob: e212280413bc105b54ef5a995e246f9a201df539 [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361// Copyright 2016 The Chromium Authors
stevenjbf22f82e2016-10-26 21:47:382// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Lei Zhang2fdfa8922021-04-22 02:15:435#ifndef COMPONENTS_ONC_ONC_PREF_NAMES_H_
6#define COMPONENTS_ONC_ONC_PREF_NAMES_H_
stevenjbf22f82e2016-10-26 21:47:387
Michael Ershov842df222021-10-13 08:19:058#include "base/component_export.h"
stevenjbf22f82e2016-10-26 21:47:389
10class PrefRegistrySimple;
11
stevenjbf22f82e2016-10-26 21:47:3812namespace onc {
13
14namespace prefs {
15
Michael Ershov842df222021-10-13 08:19:0516COMPONENT_EXPORT(ONC) extern const char kDeviceOpenNetworkConfiguration[];
17COMPONENT_EXPORT(ONC) extern const char kOpenNetworkConfiguration[];
stevenjbf22f82e2016-10-26 21:47:3818
19} // namespace prefs
20
Michael Ershov842df222021-10-13 08:19:0521COMPONENT_EXPORT(ONC) void RegisterPrefs(PrefRegistrySimple* registry);
stevenjbf22f82e2016-10-26 21:47:3822
Michael Ershov842df222021-10-13 08:19:0523COMPONENT_EXPORT(ONC)
Steven Bennetts75492d52021-12-07 21:03:5124void RegisterProfilePrefs(PrefRegistrySimple* registry);
stevenjbf22f82e2016-10-26 21:47:3825
26} // namespace onc
27
Lei Zhang2fdfa8922021-04-22 02:15:4328#endif // COMPONENTS_ONC_ONC_PREF_NAMES_H_