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

Side by Side Diff: chrome/browser/resources/chromeos/speech_synthesis/manifest_guest.json

Issue 141733008: Use incognito split for ChromeVox and TTS in Guest mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added comment 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 // NOTE: Keep two json files in this directory in sync. The only difference
3 // should be incognito:split in Guest mode version.
2 "name": "Chrome OS built-in text-to-speech extension", 4 "name": "Chrome OS built-in text-to-speech extension",
3 "version": "0.0.2", 5 "version": "0.0.2",
4 "description": "Text-to-speech (TTS) voice extension using Native Client techn ology.", 6 "description": "Text-to-speech (TTS) voice extension using Native Client techn ology.",
5 "manifest_version": 2, 7 "manifest_version": 2,
8 "incognito": "split",
6 "background": { 9 "background": {
7 "scripts": [ 10 "scripts": [
8 "voice_data_hmm_de-DE.js", 11 "voice_data_hmm_de-DE.js",
9 "voice_data_hmm_en-GB.js", 12 "voice_data_hmm_en-GB.js",
10 "voice_data_hmm_en-US.js", 13 "voice_data_hmm_en-US.js",
11 "voice_data_hmm_es-ES.js", 14 "voice_data_hmm_es-ES.js",
12 "voice_data_hmm_fr-FR.js", 15 "voice_data_hmm_fr-FR.js",
13 "voice_data_hmm_it-IT.js", 16 "voice_data_hmm_it-IT.js",
14 "tts_controller.js", 17 "tts_controller.js",
15 "tts_main.js" 18 "tts_main.js"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 }, 57 },
55 { 58 {
56 "voice_name": "Chrome OS Spanish", 59 "voice_name": "Chrome OS Spanish",
57 "lang": "es-ES", 60 "lang": "es-ES",
58 "gender": "female", 61 "gender": "female",
59 "event_types": [ "start", "word", "end", "error" ] 62 "event_types": [ "start", "word", "end", "error" ]
60 } 63 }
61 ] 64 ]
62 } 65 }
63 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698