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

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

Issue 2919583002: chromeos: Move InputMethodUtil into //ui/base/ime/chromeos (Closed)
Patch Set: Created 3 years, 6 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 // |chrome::DIR_RESOURCES|). 202 // |chrome::DIR_RESOURCES|).
203 extern const char kSelectToSpeakExtensionPath[]; 203 extern const char kSelectToSpeakExtensionPath[];
204 // The extension id of the Switch access extension. 204 // The extension id of the Switch access extension.
205 extern const char kSwitchAccessExtensionId[]; 205 extern const char kSwitchAccessExtensionId[];
206 // Path to preinstalled Switch access extension (relative to 206 // Path to preinstalled Switch access extension (relative to
207 // |chrome::DIR_RESOURCES|). 207 // |chrome::DIR_RESOURCES|).
208 extern const char kSwitchAccessExtensionPath[]; 208 extern const char kSwitchAccessExtensionPath[];
209 // Name of the manifest file in an extension when a special manifest is used 209 // Name of the manifest file in an extension when a special manifest is used
210 // for guest mode. 210 // for guest mode.
211 extern const char kGuestManifestFilename[]; 211 extern const char kGuestManifestFilename[];
212 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine
213 // id for the builtin-in Braille IME extension.
214 extern const char kBrailleImeExtensionId[];
215 extern const char kBrailleImeExtensionPath[];
216 extern const char kBrailleImeEngineId[];
217 // Path to preinstalled Connectivity Diagnostics extension. 212 // Path to preinstalled Connectivity Diagnostics extension.
218 extern const char kConnectivityDiagnosticsPath[]; 213 extern const char kConnectivityDiagnosticsPath[];
219 extern const char kConnectivityDiagnosticsLauncherPath[]; 214 extern const char kConnectivityDiagnosticsLauncherPath[];
220 // The extension id of the first run dialog application. 215 // The extension id of the first run dialog application.
221 extern const char kFirstRunDialogId[]; 216 extern const char kFirstRunDialogId[];
222 // Path to preinstalled speech synthesis extension. 217 // Path to preinstalled speech synthesis extension.
223 extern const char kSpeechSynthesisExtensionPath[]; 218 extern const char kSpeechSynthesisExtensionPath[];
224 // The extension id of the speech synthesis extension. 219 // The extension id of the speech synthesis extension.
225 extern const char kSpeechSynthesisExtensionId[]; 220 extern const char kSpeechSynthesisExtensionId[];
226 // The extension id of the wallpaper manager application. 221 // The extension id of the wallpaper manager application.
(...skipping 22 matching lines...) Expand all
249 extern const char kAppStateDisabled[]; 244 extern const char kAppStateDisabled[];
250 extern const char kAppStateRunning[]; 245 extern const char kAppStateRunning[];
251 extern const char kAppStateCannotRun[]; 246 extern const char kAppStateCannotRun[];
252 extern const char kAppStateReadyToRun[]; 247 extern const char kAppStateReadyToRun[];
253 248
254 // The path part of the file system url used for media file systems. 249 // The path part of the file system url used for media file systems.
255 extern const char kMediaFileSystemPathPart[]; 250 extern const char kMediaFileSystemPathPart[];
256 } // namespace extension_misc 251 } // namespace extension_misc
257 252
258 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 253 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698