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

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

Issue 2680383002: Created skeleton for switch access component extension. (Closed)
Patch Set: Fixing copyright year for new files Created 3 years, 10 months 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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 196
197 #if defined(OS_CHROMEOS) 197 #if defined(OS_CHROMEOS)
198 // Path to preinstalled ChromeVox screen reader extension (relative to 198 // Path to preinstalled ChromeVox screen reader extension (relative to
199 // |chrome::DIR_RESOURCES|). 199 // |chrome::DIR_RESOURCES|).
200 extern const char kChromeVoxExtensionPath[]; 200 extern const char kChromeVoxExtensionPath[];
201 // The extension id of the Select-to-speak extension. 201 // The extension id of the Select-to-speak extension.
202 extern const char kSelectToSpeakExtensionId[]; 202 extern const char kSelectToSpeakExtensionId[];
203 // Path to preinstalled Select-to-speak extension (relative to 203 // Path to preinstalled Select-to-speak extension (relative to
204 // |chrome::DIR_RESOURCES|). 204 // |chrome::DIR_RESOURCES|).
205 extern const char kSelectToSpeakExtensionPath[]; 205 extern const char kSelectToSpeakExtensionPath[];
206 // The extension id of the Switch access extension.
207 extern const char kSwitchAccessExtensionId[];
208 // Path to preinstalled Switch access extension (relative to
209 // |chrome::DIR_RESOURCES|).
210 extern const char kSwitchAccessExtensionPath[];
206 // Name of the manifest file in an extension when a special manifest is used 211 // Name of the manifest file in an extension when a special manifest is used
207 // for guest mode. 212 // for guest mode.
208 extern const char kGuestManifestFilename[]; 213 extern const char kGuestManifestFilename[];
209 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine 214 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine
210 // id for the builtin-in Braille IME extension. 215 // id for the builtin-in Braille IME extension.
211 extern const char kBrailleImeExtensionId[]; 216 extern const char kBrailleImeExtensionId[];
212 extern const char kBrailleImeExtensionPath[]; 217 extern const char kBrailleImeExtensionPath[];
213 extern const char kBrailleImeEngineId[]; 218 extern const char kBrailleImeEngineId[];
214 // Path to preinstalled Connectivity Diagnostics extension. 219 // Path to preinstalled Connectivity Diagnostics extension.
215 extern const char kConnectivityDiagnosticsPath[]; 220 extern const char kConnectivityDiagnosticsPath[];
(...skipping 30 matching lines...) Expand all
246 extern const char kAppStateDisabled[]; 251 extern const char kAppStateDisabled[];
247 extern const char kAppStateRunning[]; 252 extern const char kAppStateRunning[];
248 extern const char kAppStateCannotRun[]; 253 extern const char kAppStateCannotRun[];
249 extern const char kAppStateReadyToRun[]; 254 extern const char kAppStateReadyToRun[];
250 255
251 // 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.
252 extern const char kMediaFileSystemPathPart[]; 257 extern const char kMediaFileSystemPathPart[];
253 } // namespace extension_misc 258 } // namespace extension_misc
254 259
255 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 260 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/switch_access/switch_access.js ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698