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

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

Issue 8758008: Move another block of extension tests to manifest_version 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 "manifest_version": 2,
5 "description": "Input method ime tests.", 6 "description": "Input method ime tests.",
6 "background_page": "background.html", 7 "background_page": "background.html",
7 "permissions": [ "input", "experimental" ], 8 "permissions": [ "input", "experimental" ],
8 "input_components": [{ 9 "input_components": [{
9 "name": "Test IME", 10 "name": "Test IME",
10 "type": "ime", 11 "type": "ime",
11 "id": "test", 12 "id": "test",
12 "description": "Test", // A user visible description 13 "description": "Test", // A user visible description
13 "language": "en", // The primary language this IME is used for 14 "language": "en", // The primary language this IME is used for
14 "layouts": ["us::eng"] 15 "layouts": ["us::eng"]
15 }] 16 }]
16 } 17 }
17 18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698