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

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

Issue 1839923002: Add tests for IME menu private APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « chrome/test/data/extensions/api_test/input_method/ime_menu2/background.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.inputMethod IME menu test", 3 "name": "experimental.inputMethod IME menu test",
4 "version": "0.1", 4 "version": "0.1",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "description": "Test that the IME extension gets the initial state and state c hange event of the IME menu properly", 6 "description": "Test that the IME extension gets the initial state and state c hange event of the IME menu properly",
7 "background": { 7 "background": {
8 "scripts": ["background.js"] 8 "scripts": ["background.js"]
9 }, 9 },
10 "permissions": [ "inputMethodPrivate" ] 10 "permissions": [
11 "input",
12 "inputMethodPrivate"
13 ],
14 "input_components": [{
15 "name": "Test IME",
16 "type": "ime",
17 "id": "test",
18 "description": "Test",
19 "language": "en",
20 "layouts": ["us::eng"]
21 }, {
22 "name": "Test IME2",
23 "type": "ime",
24 "id": "test2",
25 "description": "Test",
26 "language": "en",
27 "layouts": ["us::eng"]
28 }]
11 } 29 }
12 30
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/api_test/input_method/ime_menu2/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698