onc_pref_names.h 734 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_ONC_ONC_PREF_NAMES_H_
  5. #define COMPONENTS_ONC_ONC_PREF_NAMES_H_
  6. #include "base/component_export.h"
  7. class PrefRegistrySimple;
  8. namespace onc {
  9. namespace prefs {
  10. COMPONENT_EXPORT(ONC) extern const char kDeviceOpenNetworkConfiguration[];
  11. COMPONENT_EXPORT(ONC) extern const char kOpenNetworkConfiguration[];
  12. } // namespace prefs
  13. COMPONENT_EXPORT(ONC) void RegisterPrefs(PrefRegistrySimple* registry);
  14. COMPONENT_EXPORT(ONC)
  15. void RegisterProfilePrefs(PrefRegistrySimple* registry);
  16. } // namespace onc
  17. #endif // COMPONENTS_ONC_ONC_PREF_NAMES_H_