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

Side by Side Diff: chrome/test/data/extensions/api_test/input_ime/manifest.json

Issue 8757015: Rename permission from input to ime. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code Review Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9fDu8apG3Dz72XTT3Ym1SfGt06tdowT lYQ+3lGlCbVpfnMOmewgRgYxzUtUPso9aQERZcmI2+7UtbWjtk6/usl9Hr7a1JBQwfaUoUygEe56ajUe Zhe/ErkH5CXT84U0pokfPr5vMvc7RVPduU+UBiF0DnGb/hSpzz/1UhJ5H9AwIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9fDu8apG3Dz72XTT3Ym1SfGt06tdowT lYQ+3lGlCbVpfnMOmewgRgYxzUtUPso9aQERZcmI2+7UtbWjtk6/usl9Hr7a1JBQwfaUoUygEe56ajUe Zhe/ErkH5CXT84U0pokfPr5vMvc7RVPduU+UBiF0DnGb/hSpzz/1UhJ5H9AwIDAQAB",
3 "name": "experimental.input.ime test", 3 "name": "experimental.input.ime test",
4 "version": "0.1", 4 "version": "0.1",
5 "description": "Input method ime tests.", 5 "description": "Input method ime tests.",
6 "background_page": "background.html", 6 "background_page": "background.html",
7 "permissions": [ "input", "experimental" ], 7 "permissions": [ "ime", "experimental" ],
8 "input_components": [{ 8 "input_components": [{
9 "name": "Test IME", 9 "name": "Test IME",
10 "type": "ime", 10 "type": "ime",
11 "id": "test", 11 "id": "test",
12 "description": "Test", // A user visible description 12 "description": "Test", // A user visible description
13 "language": "en", // The primary language this IME is used for 13 "language": "en", // The primary language this IME is used for
14 "layouts": ["us::eng"] 14 "layouts": ["us::eng"]
15 }] 15 }]
16 } 16 }
17 17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698