pref_names.h 722 B

123456789101112131415161718192021222324
  1. // Copyright 2020 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_PERMISSIONS_PREF_NAMES_H_
  5. #define COMPONENTS_PERMISSIONS_PREF_NAMES_H_
  6. #include "build/build_config.h"
  7. namespace permissions {
  8. namespace prefs {
  9. extern const char kPermissionActions[];
  10. #if BUILDFLAG(IS_ANDROID)
  11. extern const char kLocationSettingsBackoffLevelDSE[];
  12. extern const char kLocationSettingsBackoffLevelDefault[];
  13. extern const char kLocationSettingsNextShowDSE[];
  14. extern const char kLocationSettingsNextShowDefault[];
  15. #endif
  16. } // namespace prefs
  17. } // namespace permissions
  18. #endif // COMPONENTS_PERMISSIONS_PREF_NAMES_H_