| 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"; | |
| 143 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; | 141 const char kWallpaperManagerId[] = "obklkkbkpaoaejdabbfldmcfplpdgolj"; |
| 144 const char kFirstRunDialogId[] = "jdgcneonijmofocbhmijhacgchbihela"; | 142 const char kFirstRunDialogId[] = "jdgcneonijmofocbhmijhacgchbihela"; |
| 145 #else | 143 #else |
| 146 // The extension id for the web store extension. | 144 // The extension id for the web store extension. |
| 147 const char kChromeVoxExtensionId[] = | 145 const char kChromeVoxExtensionId[] = |
| 148 "kgejglhpjiefppelpmljglcjbhoiplfn"; | 146 "kgejglhpjiefppelpmljglcjbhoiplfn"; |
| 149 #endif | 147 #endif |
| 150 | 148 |
| 151 const char kAppStateNotInstalled[] = "not_installed"; | 149 const char kAppStateNotInstalled[] = "not_installed"; |
| 152 const char kAppStateInstalled[] = "installed"; | 150 const char kAppStateInstalled[] = "installed"; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 175 | 173 |
| 176 const int kExtensionActionIconSizes[] = { | 174 const int kExtensionActionIconSizes[] = { |
| 177 EXTENSION_ICON_ACTION, // 19, | 175 EXTENSION_ICON_ACTION, // 19, |
| 178 2 * EXTENSION_ICON_ACTION // 38 | 176 2 * EXTENSION_ICON_ACTION // 38 |
| 179 }; | 177 }; |
| 180 | 178 |
| 181 const size_t kNumExtensionActionIconSizes = | 179 const size_t kNumExtensionActionIconSizes = |
| 182 arraysize(kExtensionActionIconSizes); | 180 arraysize(kExtensionActionIconSizes); |
| 183 | 181 |
| 184 } // namespace extension_misc | 182 } // namespace extension_misc |
| OLD | NEW |