summaryrefslogtreecommitdiff
path: root/chromium/components/onc/onc_pref_names.h
blob: 372e9c8df15d6472a6284fcf9789d494b93ac054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_ONC_PREF_NAMES_H_
#define COMPONENTS_ONC_PREF_NAMES_H_

#include "components/onc/onc_export.h"

class PrefRegistrySimple;

namespace user_prefs {
class PrefRegistrySyncable;
}

namespace onc {

namespace prefs {

ONC_EXPORT extern const char kDeviceOpenNetworkConfiguration[];
ONC_EXPORT extern const char kOpenNetworkConfiguration[];

}  // namespace prefs

ONC_EXPORT void RegisterPrefs(PrefRegistrySimple* registry);

ONC_EXPORT void RegisterProfilePrefs(
    user_prefs::PrefRegistrySyncable* registry);

}  // namespace onc

#endif  // COMPONENTS_ONC_PREF_NAMES_H_