| 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 namespace extension_urls { | 7 namespace extension_urls { |
| 8 | 8 |
| 9 namespace { | 9 namespace { |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 const char kInAppPaymentsSupportAppId[] = "nmmhkkegccagdldgiimedpiccmgmieda"; | 52 const char kInAppPaymentsSupportAppId[] = "nmmhkkegccagdldgiimedpiccmgmieda"; |
| 53 #if defined(ENABLE_MEDIA_ROUTER) | 53 #if defined(ENABLE_MEDIA_ROUTER) |
| 54 const char kMediaRouterStableExtensionId[] = "fjhoaacokmgbjemoflkofnenfaiekifl"; | 54 const char kMediaRouterStableExtensionId[] = "fjhoaacokmgbjemoflkofnenfaiekifl"; |
| 55 #endif // defined(ENABLE_MEDIA_ROUTER) | 55 #endif // defined(ENABLE_MEDIA_ROUTER) |
| 56 | 56 |
| 57 #if defined(OS_CHROMEOS) | 57 #if defined(OS_CHROMEOS) |
| 58 // The extension id for the built-in component extension. | 58 // The extension id for the built-in component extension. |
| 59 const char kChromeVoxExtensionId[] = | 59 const char kChromeVoxExtensionId[] = |
| 60 "mndnfokpggljbaajbnioimlmbfngpief"; | 60 "mndnfokpggljbaajbnioimlmbfngpief"; |
| 61 const char kChromeVoxExtensionPath[] = "chromeos/chromevox"; | 61 const char kChromeVoxExtensionPath[] = "chromeos/chromevox"; |
| 62 const char kChromeVoxManifestFilename[] = "manifest.json"; | 62 const base::FilePath::CharType kGuestManifestFilename[] = |
| 63 const char kChromeVoxGuestManifestFilename[] = "manifest_guest.json"; | 63 FILE_PATH_LITERAL("manifest_guest.json"); |
| 64 const char kBrailleImeExtensionId[] = | 64 const char kBrailleImeExtensionId[] = |
| 65 "jddehjeebkoimngcbdkaahpobgicbffp"; | 65 "jddehjeebkoimngcbdkaahpobgicbffp"; |
| 66 const char kBrailleImeExtensionPath[] = | 66 const char kBrailleImeExtensionPath[] = |
| 67 "chromeos/braille_ime"; | 67 "chromeos/braille_ime"; |
| 68 const char kBrailleImeEngineId[] = | 68 const char kBrailleImeEngineId[] = |
| 69 "_comp_ime_jddehjeebkoimngcbdkaahpobgicbffpbraille"; | 69 "_comp_ime_jddehjeebkoimngcbdkaahpobgicbffpbraille"; |
| 70 const char kConnectivityDiagnosticsPath[] = | 70 const char kConnectivityDiagnosticsPath[] = |
| 71 "/usr/share/chromeos-assets/connectivity_diagnostics"; | 71 "/usr/share/chromeos-assets/connectivity_diagnostics"; |
| 72 const char kConnectivityDiagnosticsLauncherPath[] = | 72 const char kConnectivityDiagnosticsLauncherPath[] = |
| 73 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; | 73 "/usr/share/chromeos-assets/connectivity_diagnostics_launcher"; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 0xfc, 0xf3, 0x08, 0x12, 0xff, 0x93, 0xbd, 0x62, 0x31, 0xd8, 0x1c, 0xea, | 118 0xfc, 0xf3, 0x08, 0x12, 0xff, 0x93, 0xbd, 0x62, 0x31, 0xd8, 0x1c, 0xea, |
| 119 0x1a, 0x9e, 0xf5, 0x81, 0x28, 0x7f, 0x75, 0x5e, 0xd2, 0x27, 0x7a, 0xc2, | 119 0x1a, 0x9e, 0xf5, 0x81, 0x28, 0x7f, 0x75, 0x5e, 0xd2, 0x27, 0x7a, 0xc2, |
| 120 0x96, 0xf5, 0x9d, 0xdb, 0x18, 0xfc, 0x76, 0xdc, 0x46, 0xf0, 0x57, 0xc0, | 120 0x96, 0xf5, 0x9d, 0xdb, 0x18, 0xfc, 0x76, 0xdc, 0x46, 0xf0, 0x57, 0xc0, |
| 121 0x58, 0x34, 0xc8, 0x22, 0x2d, 0x2a, 0x65, 0x75, 0xa7, 0xd9, 0x08, 0x62, | 121 0x58, 0x34, 0xc8, 0x22, 0x2d, 0x2a, 0x65, 0x75, 0xa7, 0xd9, 0x08, 0x62, |
| 122 0xcd, 0x02, 0x03, 0x01, 0x00, 0x01}; | 122 0xcd, 0x02, 0x03, 0x01, 0x00, 0x01}; |
| 123 | 123 |
| 124 const int kWebstoreSignaturesPublicKeySize = | 124 const int kWebstoreSignaturesPublicKeySize = |
| 125 arraysize(kWebstoreSignaturesPublicKey); | 125 arraysize(kWebstoreSignaturesPublicKey); |
| 126 | 126 |
| 127 } // namespace extension_misc | 127 } // namespace extension_misc |
| OLD | NEW |