Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: chrome/common/extensions/extension_constants.cc

Issue 743273002: Various changes required to support ChromeVox Next to read Views and Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 const char kAppLaunchHistogram[] = "Extensions.AppLaunch"; 62 const char kAppLaunchHistogram[] = "Extensions.AppLaunch";
63 const char kPlatformAppLaunchHistogram[] = "Apps.AppLaunch"; 63 const char kPlatformAppLaunchHistogram[] = "Apps.AppLaunch";
64 #if defined(OS_CHROMEOS) 64 #if defined(OS_CHROMEOS)
65 // The extension id for the built-in component extension. 65 // The extension id for the built-in component extension.
66 const char kChromeVoxExtensionId[] = 66 const char kChromeVoxExtensionId[] =
67 "mndnfokpggljbaajbnioimlmbfngpief"; 67 "mndnfokpggljbaajbnioimlmbfngpief";
68 const char kChromeVoxExtensionPath[] = "chromeos/chromevox"; 68 const char kChromeVoxExtensionPath[] = "chromeos/chromevox";
69 const char kChromeVoxManifestFilename[] = "manifest.json"; 69 const char kChromeVoxManifestFilename[] = "manifest.json";
70 const char kChromeVoxGuestManifestFilename[] = "manifest_guest.json"; 70 const char kChromeVoxGuestManifestFilename[] = "manifest_guest.json";
71 const char kChromeVoxNextManifestFilename[] = "manifest_next.json";
72 const char kChromeVoxNextGuestManifestFilename[] = "manifest_next_guest.json";
73 const char kBrailleImeExtensionId[] = 71 const char kBrailleImeExtensionId[] =
74 "jddehjeebkoimngcbdkaahpobgicbffp"; 72 "jddehjeebkoimngcbdkaahpobgicbffp";
75 const char kBrailleImeExtensionPath[] = 73 const char kBrailleImeExtensionPath[] =
76 "chromeos/braille_ime"; 74 "chromeos/braille_ime";
77 const char kBrailleImeEngineId[] = 75 const char kBrailleImeEngineId[] =
78 "_comp_ime_jddehjeebkoimngcbdkaahpobgicbffpbraille"; 76 "_comp_ime_jddehjeebkoimngcbdkaahpobgicbffpbraille";
79 const char kConnectivityDiagnosticsPath[] = 77 const char kConnectivityDiagnosticsPath[] =
80 "/usr/share/chromeos-assets/connectivity_diagnostics"; 78 "/usr/share/chromeos-assets/connectivity_diagnostics";
81 const char kConnectivityDiagnosticsKioskPath[] = 79 const char kConnectivityDiagnosticsKioskPath[] =
82 "/usr/share/chromeos-assets/connectivity_diagnostics_kiosk"; 80 "/usr/share/chromeos-assets/connectivity_diagnostics_kiosk";
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 0xfc, 0xf3, 0x08, 0x12, 0xff, 0x93, 0xbd, 0x62, 0x31, 0xd8, 0x1c, 0xea, 126 0xfc, 0xf3, 0x08, 0x12, 0xff, 0x93, 0xbd, 0x62, 0x31, 0xd8, 0x1c, 0xea,
129 0x1a, 0x9e, 0xf5, 0x81, 0x28, 0x7f, 0x75, 0x5e, 0xd2, 0x27, 0x7a, 0xc2, 127 0x1a, 0x9e, 0xf5, 0x81, 0x28, 0x7f, 0x75, 0x5e, 0xd2, 0x27, 0x7a, 0xc2,
130 0x96, 0xf5, 0x9d, 0xdb, 0x18, 0xfc, 0x76, 0xdc, 0x46, 0xf0, 0x57, 0xc0, 128 0x96, 0xf5, 0x9d, 0xdb, 0x18, 0xfc, 0x76, 0xdc, 0x46, 0xf0, 0x57, 0xc0,
131 0x58, 0x34, 0xc8, 0x22, 0x2d, 0x2a, 0x65, 0x75, 0xa7, 0xd9, 0x08, 0x62, 129 0x58, 0x34, 0xc8, 0x22, 0x2d, 0x2a, 0x65, 0x75, 0xa7, 0xd9, 0x08, 0x62,
132 0xcd, 0x02, 0x03, 0x01, 0x00, 0x01}; 130 0xcd, 0x02, 0x03, 0x01, 0x00, 0x01};
133 131
134 const int kWebstoreSignaturesPublicKeySize = 132 const int kWebstoreSignaturesPublicKeySize =
135 arraysize(kWebstoreSignaturesPublicKey); 133 arraysize(kWebstoreSignaturesPublicKey);
136 134
137 } // namespace extension_misc 135 } // namespace extension_misc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698