OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/extensions/extension_constants.h" | 5 #include "chrome/common/extensions/extension_constants.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 const char kChromeVoxExtensionId[] = | 131 const char kChromeVoxExtensionId[] = |
132 "mndnfokpggljbaajbnioimlmbfngpief"; | 132 "mndnfokpggljbaajbnioimlmbfngpief"; |
133 const char kConnectivityDiagnosticsPath[] = | 133 const char kConnectivityDiagnosticsPath[] = |
134 "/usr/share/chromeos-assets/connectivity_diagnostics"; | 134 "/usr/share/chromeos-assets/connectivity_diagnostics"; |
135 const char kConnectivityDiagnosticsLauncherPath[] = | 135 const char kConnectivityDiagnosticsLauncherPath[] = |
136 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; | 136 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; |
137 const char kSpeechSynthesisExtensionPath[] = | 137 const char kSpeechSynthesisExtensionPath[] = |
138 "/usr/share/chromeos-assets/speech_synthesis/patts"; | 138 "/usr/share/chromeos-assets/speech_synthesis/patts"; |
139 const char kSpeechSynthesisExtensionId[] = | 139 const char kSpeechSynthesisExtensionId[] = |
140 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; | 140 "gjjabgpgjpampikjhjpfhneeoapjbjaf"; |
| 141 const char kHighQuality_en_US_ExtensionId[] = |
| 142 "efdojdlmjknacnljjdedapanceanigkh"; |
141 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; | 143 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; |
142 const char kFirstRunDialogId[] = "jdgcneonijmofocbhmijhacgchbihela"; | 144 const char kFirstRunDialogId[] = "jdgcneonijmofocbhmijhacgchbihela"; |
143 #else | 145 #else |
144 // The extension id for the web store extension. | 146 // The extension id for the web store extension. |
145 const char kChromeVoxExtensionId[] = | 147 const char kChromeVoxExtensionId[] = |
146 "kgejglhpjiefppelpmljglcjbhoiplfn"; | 148 "kgejglhpjiefppelpmljglcjbhoiplfn"; |
147 #endif | 149 #endif |
148 | 150 |
149 const char kAppStateNotInstalled[] = "not_installed"; | 151 const char kAppStateNotInstalled[] = "not_installed"; |
150 const char kAppStateInstalled[] = "installed"; | 152 const char kAppStateInstalled[] = "installed"; |
(...skipping 30 matching lines...) Expand all Loading... |
181 | 183 |
182 const int kScriptBadgeIconSizes[] = { | 184 const int kScriptBadgeIconSizes[] = { |
183 EXTENSION_ICON_BITTY, // 16 | 185 EXTENSION_ICON_BITTY, // 16 |
184 2 * EXTENSION_ICON_BITTY // 32 | 186 2 * EXTENSION_ICON_BITTY // 32 |
185 }; | 187 }; |
186 | 188 |
187 const size_t kNumScriptBadgeIconSizes = | 189 const size_t kNumScriptBadgeIconSizes = |
188 arraysize(kScriptBadgeIconSizes); | 190 arraysize(kScriptBadgeIconSizes); |
189 | 191 |
190 } // namespace extension_misc | 192 } // namespace extension_misc |
OLD | NEW |