pref_names.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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 ASH_COMPONENTS_PHONEHUB_PREF_NAMES_H_
  5. #define ASH_COMPONENTS_PHONEHUB_PREF_NAMES_H_
  6. namespace ash {
  7. namespace phonehub {
  8. namespace prefs {
  9. extern const char kCameraRollAccessStatus[];
  10. extern const char kNotificationAccessStatus[];
  11. extern const char kNotificationAccessProhibitedReason[];
  12. extern const char kHideOnboardingUi[];
  13. extern const char kIsAwaitingVerifiedHost[];
  14. extern const char kHasDismissedSetupRequiredUi[];
  15. extern const char kNeedsOneTimeNotificationAccessUpdate[];
  16. extern const char kScreenLockStatus[];
  17. extern const char kRecentAppsHistory[];
  18. extern const char kFeatureSetupRequestSupported[];
  19. } // namespace prefs
  20. } // namespace phonehub
  21. } // namespace ash
  22. // TODO(https://crbug.com/1164001): remove after the migration is finished.
  23. namespace chromeos {
  24. namespace phonehub {
  25. namespace prefs = ::ash::phonehub::prefs;
  26. }
  27. } // namespace chromeos
  28. #endif // ASH_COMPONENTS_PHONEHUB_PREF_NAMES_H_