pref_names.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2014 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_VARIATIONS_PREF_NAMES_H_
  5. #define COMPONENTS_VARIATIONS_PREF_NAMES_H_
  6. #include "base/component_export.h"
  7. namespace variations {
  8. namespace prefs {
  9. // Alphabetical list of preference names specific to the variations component.
  10. // Keep alphabetized and document each in the .cc file.
  11. COMPONENT_EXPORT(VARIATIONS)
  12. extern const char kDeviceVariationsRestrictionsByPolicy[];
  13. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsCompressedSeed[];
  14. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsCountry[];
  15. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsCrashStreak[];
  16. COMPONENT_EXPORT(VARIATIONS)
  17. extern const char kVariationsFailedToFetchSeedStreak[];
  18. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsLastFetchTime[];
  19. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSeedMilestone[];
  20. COMPONENT_EXPORT(VARIATIONS)
  21. extern const char kVariationsPermanentConsistencyCountry[];
  22. COMPONENT_EXPORT(VARIATIONS)
  23. extern const char kVariationsPermanentOverriddenCountry[];
  24. COMPONENT_EXPORT(VARIATIONS)
  25. extern const char kVariationsRestrictionsByPolicy[];
  26. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsRestrictParameter[];
  27. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSafeCompressedSeed[];
  28. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSafeSeedDate[];
  29. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSafeSeedFetchTime[];
  30. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSafeSeedLocale[];
  31. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSafeSeedMilestone[];
  32. COMPONENT_EXPORT(VARIATIONS)
  33. extern const char kVariationsSafeSeedPermanentConsistencyCountry[];
  34. COMPONENT_EXPORT(VARIATIONS)
  35. extern const char kVariationsSafeSeedSessionConsistencyCountry[];
  36. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSafeSeedSignature[];
  37. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSeedDate[];
  38. COMPONENT_EXPORT(VARIATIONS) extern const char kVariationsSeedSignature[];
  39. } // namespace prefs
  40. } // namespace variations
  41. #endif // COMPONENTS_VARIATIONS_PREF_NAMES_H_