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

Side by Side Diff: chrome/browser/resources/chromeos/braille_ime/manifest.json

Issue 608183002: Move all white-listed input method indicator text from InputMethodUtil to manifests of IME extensio… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit. Created 6 years, 2 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 { 1 {
2 "name": "Braille IME", 2 "name": "Braille IME",
3 "description": "Braille Input Method Extension.", 3 "description": "Braille Input Method Extension.",
4 "version": "1.0", 4 "version": "1.0",
5 "background": { 5 "background": {
6 "scripts": [ "braille_ime.js", "main.js" ], 6 "scripts": [ "braille_ime.js", "main.js" ],
7 "persistent": true 7 "persistent": true
8 }, 8 },
9 // chrome-extension://jddehjeebkoimngcbdkaahpobgicbffp 9 // chrome-extension://jddehjeebkoimngcbdkaahpobgicbffp
10 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCvDjqqYESDQe3OcI65JctUYLSlQ7RAd9 02VUw+RO/70fJ7SSkg8+2y+5paD6+g8f6wgFsgVsbTX2UM+tsmGKWR23bgSQxYhfZUZgP7qFdk72hGRU nKnXA+JOJ5maI4v+w18WPTWYOFJt2NOvat+GKKF0CAFQG+z2Ucn/sRZVfnrQIDAQAB", 10 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCvDjqqYESDQe3OcI65JctUYLSlQ7RAd9 02VUw+RO/70fJ7SSkg8+2y+5paD6+g8f6wgFsgVsbTX2UM+tsmGKWR23bgSQxYhfZUZgP7qFdk72hGRU nKnXA+JOJ5maI4v+w18WPTWYOFJt2NOvat+GKKF0CAFQG+z2Ucn/sRZVfnrQIDAQAB",
11 "manifest_version": 2, 11 "manifest_version": 2,
12 "permissions": [ 12 "permissions": [
13 "input" 13 "input"
14 ], 14 ],
15 "ime_path": "chromeos/braille_ime", 15 "ime_path": "chromeos/braille_ime",
16 "input_components": [ 16 "input_components": [
17 { 17 {
18 "name": "Braille Keyboard", 18 "name": "Braille Keyboard",
19 "type": "ime", 19 "type": "ime",
20 "id": "braille", 20 "id": "braille",
21 "indicator": "\u2803\u2817\u2807",
Peter Lundblad 2014/09/29 12:20:47 Please port over the comment describing what this
Shu Chen 2014/09/29 14:48:08 Done.
21 "language": ["None"], 22 "language": ["None"],
22 "description": "Braille hardware keyboard" 23 "description": "Braille hardware keyboard"
23 } 24 }
24 ] 25 ]
25 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698