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

Side by Side Diff: chrome/browser/resources/chromeos/input_method/mozc_manifest.json

Issue 389913002: Moving IME manifests to chrome resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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
(Empty)
1 {
2 "name": "Mozc IME extension",
3 "version": "@MAJOR@.@MINOR@.@BUILD@.@REVISION@",
nona 2014/07/14 06:03:48 Is this value is expected? Probably this is not a
Shu Chen 2014/07/14 08:53:44 Done.
4 "permissions": [
5 "input",
6 "unlimitedStorage"
7 ],
8 "manifest_version": 2,
9 "minimum_chrome_version": "22",
10 "description": "__MSG_appDesc__",
11 "default_locale": "en",
12 "background": {
13 "page": "nacl_mozc.html"
14 },
15 "input_components": [{
16 "name": "__MSG_mozc_us_inputmethod__",
17 "type": "ime",
18 "id": "nacl_mozc_us",
19 "description": "Japanese input method.",
20 "language": "ja",
21 "layouts": ["us"]
22 },{
23 "name": "__MSG_mozc_jp_inputmethod__",
24 "type": "ime",
25 "id": "nacl_mozc_jp",
26 "description": "Japanese input method.",
27 "language": "ja",
28 "layouts": ["jp"]
29 }],
30 "options_page": "options.html",
31 "icons": {
32 "128": "product_icon_32bpp-128.png"
33 }
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698