pref_names.cc 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. #include "components/soda/pref_names.h"
  5. namespace prefs {
  6. // The file path of the Speech On-Device API (SODA) binary.
  7. const char kSodaBinaryPath[] = "accessibility.captions.soda_binary_path";
  8. // The scheduled time to clean up the Speech On-Device API (SODA) files from the
  9. // device.
  10. const char kSodaScheduledDeletionTime[] =
  11. "accessibility.captions.soda_scheduled_deletion_time";
  12. // The file path of the en-US Speech On-Device API (SODA) configuration file.
  13. const char kSodaEnUsConfigPath[] =
  14. "accessibility.captions.soda_en_us_config_path";
  15. // The file path of the ja-JP Speech On-Device API (SODA) configuration file.
  16. const char kSodaJaJpConfigPath[] =
  17. "accessibility.captions.soda_ja_jp_config_path";
  18. // The file path of the de-DE Speech On-Device API (SODA) configuration file.
  19. const char kSodaDeDeConfigPath[] =
  20. "accessibility.captions.soda_de_de_config_path";
  21. // The file path of the es-ES Speech On-Device API (SODA) configuration file.
  22. const char kSodaEsEsConfigPath[] =
  23. "accessibility.captions.soda_es_es_config_path";
  24. // The file path of the fr-FR Speech On-Device API (SODA) configuration file.
  25. const char kSodaFrFrConfigPath[] =
  26. "accessibility.captions.soda_fr_fr_config_path";
  27. // The file path of the it-IT Speech On-Device API (SODA) configuration file.
  28. const char kSodaItItConfigPath[] =
  29. "accessibility.captions.soda_it_it_config_path";
  30. // The list of Speech On-Device API (SODA) language packs installed or
  31. // registered to be installed.
  32. const char kSodaRegisteredLanguagePacks[] =
  33. "accessibility.captions.soda_registered_language_packs";
  34. } // namespace prefs