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

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

Issue 149233004: Revert "Automatically trigger installation of high-quality speech synthesis extension." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Don't remove WillSpeakUtteranceWithVoice, it is dependent upon by a test now. Created 6 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 // Path to preinstalled ChromeVox screen reader extension (relative to 250 // Path to preinstalled ChromeVox screen reader extension (relative to
251 // |chrome::DIR_RESOURCES|). 251 // |chrome::DIR_RESOURCES|).
252 extern const char kChromeVoxExtensionPath[]; 252 extern const char kChromeVoxExtensionPath[];
253 // Path to preinstalled Connectivity Diagnostics extension. 253 // Path to preinstalled Connectivity Diagnostics extension.
254 extern const char kConnectivityDiagnosticsPath[]; 254 extern const char kConnectivityDiagnosticsPath[];
255 extern const char kConnectivityDiagnosticsLauncherPath[]; 255 extern const char kConnectivityDiagnosticsLauncherPath[];
256 // Path to preinstalled speech synthesis extension. 256 // Path to preinstalled speech synthesis extension.
257 extern const char kSpeechSynthesisExtensionPath[]; 257 extern const char kSpeechSynthesisExtensionPath[];
258 // The extension id of the speech synthesis extension. 258 // The extension id of the speech synthesis extension.
259 extern const char kSpeechSynthesisExtensionId[]; 259 extern const char kSpeechSynthesisExtensionId[];
260 // The extension id of the high quality speech synthesis extension for
261 // en-US, which can be installed automatically from the web store.
262 extern const char kHighQuality_en_US_ExtensionId[];
263 // The extension id of the wallpaper manager application. 260 // The extension id of the wallpaper manager application.
264 extern const char kWallpaperManagerId[]; 261 extern const char kWallpaperManagerId[];
265 // The extension id of the first run dialog application. 262 // The extension id of the first run dialog application.
266 extern const char kFirstRunDialogId[]; 263 extern const char kFirstRunDialogId[];
267 #endif 264 #endif
268 265
269 // What causes an extension to be installed? Used in histograms, so don't 266 // What causes an extension to be installed? Used in histograms, so don't
270 // change existing values. 267 // change existing values.
271 enum CrxInstallCause { 268 enum CrxInstallCause {
272 INSTALL_CAUSE_UNSET = 0, 269 INSTALL_CAUSE_UNSET = 0,
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 LAUNCH_CONTAINER_WINDOW, 336 LAUNCH_CONTAINER_WINDOW,
340 LAUNCH_CONTAINER_PANEL, 337 LAUNCH_CONTAINER_PANEL,
341 LAUNCH_CONTAINER_TAB, 338 LAUNCH_CONTAINER_TAB,
342 // For platform apps, which don't actually have a container (they just get a 339 // For platform apps, which don't actually have a container (they just get a
343 // "onLaunched" event). 340 // "onLaunched" event).
344 LAUNCH_CONTAINER_NONE 341 LAUNCH_CONTAINER_NONE
345 }; 342 };
346 } // namespace extensions 343 } // namespace extensions
347 344
348 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_ 345 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/extensions/extension_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698