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

Unified Diff: chrome/browser/resources/chromeos/speech_synthesis/manifest.json

Issue 102263005: Automatically trigger installation of high-quality speech synthesis extension. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix debug assertion Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/speech/tts_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/speech_synthesis/manifest.json
diff --git a/chrome/browser/resources/chromeos/speech_synthesis/manifest.json b/chrome/browser/resources/chromeos/speech_synthesis/manifest.json
index 26cce46dbcd59e7a507283ae0a6f2fc5b8e38bfc..4252fdcef7f9485c428f759ce13f307bfca6a636 100644
--- a/chrome/browser/resources/chromeos/speech_synthesis/manifest.json
+++ b/chrome/browser/resources/chromeos/speech_synthesis/manifest.json
@@ -1,7 +1,7 @@
{
- "name": "Chrome OS built-in text-to-speech extension",
- "version": "0.0.2",
- "description": "Text-to-speech (TTS) voice extension using Native Client technology.",
+ "name": "Chrome OS text-to-speech component extension",
+ "version": "1.0.2",
+ "description": "Chrome OS native text-to-speech implemented using native client.",
"manifest_version": 2,
"background": {
"scripts": [
@@ -13,7 +13,8 @@
"voice_data_hmm_it-IT.js",
"tts_controller.js",
"tts_main.js"
- ]
+ ],
+ "persistent": false
},
"permissions": [
"ttsEngine",
@@ -41,13 +42,13 @@
"event_types": [ "start", "word", "end", "error" ]
},
{
- "voice_name": "Chrome OS US English",
+ "voice_name": "Chrome OS US English Female",
"lang": "en-US",
"gender": "female",
"event_types": [ "start", "word", "end", "error" ]
},
{
- "voice_name": "Chrome OS British English",
+ "voice_name": "Chrome OS British English Female",
"lang": "en-GB",
"gender": "female",
"event_types": [ "start", "word", "end", "error" ]
« no previous file with comments | « chrome/browser/prefs/browser_prefs.cc ('k') | chrome/browser/speech/tts_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698