File: pref_names.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (106 lines) | stat: -rw-r--r-- 4,270 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/soda/pref_names.h"

namespace prefs {

// The file path of the Speech On-Device API (SODA) binary.
const char kSodaBinaryPath[] = "accessibility.captions.soda_binary_path";

// The scheduled time to clean up the Speech On-Device API (SODA) files from the
// device.
const char kSodaScheduledDeletionTime[] =
    "accessibility.captions.soda_scheduled_deletion_time";

// The file path of the en-US Speech On-Device API (SODA) configuration file.
const char kSodaEnUsConfigPath[] =
    "accessibility.captions.soda_en_us_config_path";

// The file path of the ja-JP Speech On-Device API (SODA) configuration file.
const char kSodaJaJpConfigPath[] =
    "accessibility.captions.soda_ja_jp_config_path";

// The file path of the de-DE Speech On-Device API (SODA) configuration file.
const char kSodaDeDeConfigPath[] =
    "accessibility.captions.soda_de_de_config_path";

// The file path of the es-ES Speech On-Device API (SODA) configuration file.
const char kSodaEsEsConfigPath[] =
    "accessibility.captions.soda_es_es_config_path";

// The file path of the fr-FR Speech On-Device API (SODA) configuration file.
const char kSodaFrFrConfigPath[] =
    "accessibility.captions.soda_fr_fr_config_path";

// The file path of the it-IT Speech On-Device API (SODA) configuration file.
const char kSodaItItConfigPath[] =
    "accessibility.captions.soda_it_it_config_path";

// The file path of the hi-IN Speech On-Device API (SODA) configuration file.
const char kSodaHiInConfigPath[] =
    "accessibility.captions.soda_hi_in_config_path";

// The file path of the pt-BR Speech On-Device API (SODA) configuration file.
const char kSodaPtBrConfigPath[] =
    "accessibility.captions.soda_pt_br_config_path";

// The file path of the id-ID Speech On-Device API (SODA) configuration file.
const char kSodaIdIdConfigPath[] =
    "accessibility.captions.soda_id_id_config_path";

// The file path of the ko-KR Speech On-Device API (SODA) configuration file.
const char kSodaKoKrConfigPath[] =
    "accessibility.captions.soda_ko_kr_config_path";

// The file path of the pl-PL Speech On-Device API (SODA) configuration file.
const char kSodaPlPlConfigPath[] =
    "accessibility.captions.soda_pl_pl_config_path";

// The file path of the ru-RU Speech On-Device API (SODA) configuration file.
const char kSodaRuRuConfigPath[] =
    "accessibility.captions.soda_ru_ru_config_path";

// The file path of the th-TH Speech On-Device API (SODA) configuration file.
const char kSodaThThConfigPath[] =
    "accessibility.captions.soda_th_th_config_path";

// The file path of the tr-TR Speech On-Device API (SODA) configuration file.
const char kSodaTrTrConfigPath[] =
    "accessibility.captions.soda_tr_tr_config_path";

// The file path of the vi-VN Speech On-Device API (SODA) configuration file.
const char kSodaViVnConfigPath[] =
    "accessibility.captions.soda_vi_vn_config_path";

// The file path of the zh-CN Speech On-Device API (SODA) configuration file.
const char kSodaZhCnConfigPath[] =
    "accessibility.captions.soda_zh_cn_config_path";

// The file path of the zh-TW Speech On-Device API (SODA) configuration file.
const char kSodaZhTwConfigPath[] =
    "accessibility.captions.soda_zh_tw_config_path";

// The file path of the nb-NO Speech On-Device API (SODA) configuration file.
const char kSodaNbNoConfigPath[] =
    "accessibility.captions.soda_nb_no_config_path";

// The file path of the da-DK Speech On-Device API (SODA) configuration file.
const char kSodaDaDkConfigPath[] =
    "accessibility.captions.soda_da_dk_config_path";

// The file path of the nl-NL Speech On-Device API (SODA) configuration file.
const char kSodaNlNlConfigPath[] =
    "accessibility.captions.soda_nl_nl_config_path";

// The file path of the sv-SE Speech On-Device API (SODA) configuration file.
const char kSodaSvSeConfigPath[] =
    "accessibility.captions.soda_sv_se_config_path";

// The list of Speech On-Device API (SODA) language packs installed or
// registered to be installed.
const char kSodaRegisteredLanguagePacks[] =
    "accessibility.captions.soda_registered_language_packs";

}  // namespace prefs