blob: 50a1409b9f71c26be0d7a0dc0896a0bf2315dd58 [file] [log] [blame]
// 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_ONC_PREF_NAMES_H_
#define COMPONENTS_ONC_ONC_PREF_NAMES_H_
#include "base/component_export.h"
class PrefRegistrySimple;
namespace user_prefs {
class PrefRegistrySyncable;
}
namespace onc {
namespace prefs {
COMPONENT_EXPORT(ONC) extern const char kDeviceOpenNetworkConfiguration[];
COMPONENT_EXPORT(ONC) extern const char kOpenNetworkConfiguration[];
} // namespace prefs
COMPONENT_EXPORT(ONC) void RegisterPrefs(PrefRegistrySimple* registry);
COMPONENT_EXPORT(ONC)
void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
} // namespace onc
#endif // COMPONENTS_ONC_ONC_PREF_NAMES_H_