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

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

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, 1 month 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 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 extern const char kChromeVoxExtensionId[]; 205 extern const char kChromeVoxExtensionId[];
206 206
207 #if defined(OS_CHROMEOS) 207 #if defined(OS_CHROMEOS)
208 // Path to preinstalled ChromeVox screen reader extension (relative to 208 // Path to preinstalled ChromeVox screen reader extension (relative to
209 // |chrome::DIR_RESOURCES|). 209 // |chrome::DIR_RESOURCES|).
210 extern const char kChromeVoxExtensionPath[]; 210 extern const char kChromeVoxExtensionPath[];
211 // Name of ChromeVox manifest file. 211 // Name of ChromeVox manifest file.
212 extern const char kChromeVoxManifestFilename[]; 212 extern const char kChromeVoxManifestFilename[];
213 // Name of ChromeVox guest manifest file. 213 // Name of ChromeVox guest manifest file.
214 extern const char kChromeVoxGuestManifestFilename[]; 214 extern const char kChromeVoxGuestManifestFilename[];
215 // Name of ChromeVox next manifest file.
216 extern const char kChromeVoxNextManifestFilename[];
217 // Name of ChromeVox next guest manifest file.
218 extern const char kChromeVoxNextGuestManifestFilename[];
219 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine 215 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine
220 // id for the builtin-in Braille IME extension. 216 // id for the builtin-in Braille IME extension.
221 extern const char kBrailleImeExtensionId[]; 217 extern const char kBrailleImeExtensionId[];
222 extern const char kBrailleImeExtensionPath[]; 218 extern const char kBrailleImeExtensionPath[];
223 extern const char kBrailleImeEngineId[]; 219 extern const char kBrailleImeEngineId[];
224 // Path to preinstalled Connectivity Diagnostics extension. 220 // Path to preinstalled Connectivity Diagnostics extension.
225 extern const char kConnectivityDiagnosticsPath[]; 221 extern const char kConnectivityDiagnosticsPath[];
226 extern const char kConnectivityDiagnosticsKioskPath[]; 222 extern const char kConnectivityDiagnosticsKioskPath[];
227 extern const char kConnectivityDiagnosticsLauncherPath[]; 223 extern const char kConnectivityDiagnosticsLauncherPath[];
228 // Path to preinstalled speech synthesis extension. 224 // Path to preinstalled speech synthesis extension.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // The path part of the file system url used for media file systems. 256 // The path part of the file system url used for media file systems.
261 extern const char kMediaFileSystemPathPart[]; 257 extern const char kMediaFileSystemPathPart[];
262 258
263 // The key used for signing some pieces of data from the webstore. 259 // The key used for signing some pieces of data from the webstore.
264 extern const uint8 kWebstoreSignaturesPublicKey[]; 260 extern const uint8 kWebstoreSignaturesPublicKey[];
265 extern const int kWebstoreSignaturesPublicKeySize; 261 extern const int kWebstoreSignaturesPublicKeySize;
266 262
267 } // namespace extension_misc 263 } // namespace extension_misc
268 264
269 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 265 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698