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

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

Issue 2216433004: Add skeleton for select-to-speak component extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 APP_LAUNCH_BUCKET_INVALID 191 APP_LAUNCH_BUCKET_INVALID
192 }; 192 };
193 193
194 // The extension id of the ChromeVox extension. 194 // The extension id of the ChromeVox extension.
195 extern const char kChromeVoxExtensionId[]; 195 extern const char kChromeVoxExtensionId[];
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.
202 extern const char kSelectToSpeakExtensionId[];
203 // Path to preinstalled ChromeVox screen reader extension (relative to
David Tseng 2016/09/16 21:16:03 Update
dmazzoni 2016/09/16 22:06:20 Fixed
204 // |chrome::DIR_RESOURCES|).
205 extern const char kSelectToSpeakExtensionPath[];
201 // Name of the manifest file in an extension when a special manifest is used 206 // Name of the manifest file in an extension when a special manifest is used
202 // for guest mode. 207 // for guest mode.
203 extern const char kGuestManifestFilename[]; 208 extern const char kGuestManifestFilename[];
204 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine 209 // Extension id, path (relative to |chrome::DIR_RESOURCES|) and IME engine
205 // id for the builtin-in Braille IME extension. 210 // id for the builtin-in Braille IME extension.
206 extern const char kBrailleImeExtensionId[]; 211 extern const char kBrailleImeExtensionId[];
207 extern const char kBrailleImeExtensionPath[]; 212 extern const char kBrailleImeExtensionPath[];
208 extern const char kBrailleImeEngineId[]; 213 extern const char kBrailleImeEngineId[];
209 // Path to preinstalled Connectivity Diagnostics extension. 214 // Path to preinstalled Connectivity Diagnostics extension.
210 extern const char kConnectivityDiagnosticsPath[]; 215 extern const char kConnectivityDiagnosticsPath[];
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 extern const int kWebstoreSignaturesPublicKeySize; 256 extern const int kWebstoreSignaturesPublicKeySize;
252 257
253 #if defined(OS_CHROMEOS) 258 #if defined(OS_CHROMEOS)
254 // Returns true if |extension_id| is one of the IME extensions that will create 259 // Returns true if |extension_id| is one of the IME extensions that will create
255 // IME menu. 260 // IME menu.
256 bool IsImeMenuExtensionId(const std::string& extension_id); 261 bool IsImeMenuExtensionId(const std::string& extension_id);
257 #endif 262 #endif
258 } // namespace extension_misc 263 } // namespace extension_misc
259 264
260 #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