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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/input_method/mozc_manifest.json
diff --git a/chrome/browser/resources/chromeos/input_method/mozc_manifest.json b/chrome/browser/resources/chromeos/input_method/mozc_manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..2f0467c80b43b9a32b8971c2a7b4698472d9f09f
--- /dev/null
+++ b/chrome/browser/resources/chromeos/input_method/mozc_manifest.json
@@ -0,0 +1,34 @@
+{
+ "name": "Mozc IME extension",
+ "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.
+ "permissions": [
+ "input",
+ "unlimitedStorage"
+ ],
+ "manifest_version": 2,
+ "minimum_chrome_version": "22",
+ "description": "__MSG_appDesc__",
+ "default_locale": "en",
+ "background": {
+ "page": "nacl_mozc.html"
+ },
+ "input_components": [{
+ "name": "__MSG_mozc_us_inputmethod__",
+ "type": "ime",
+ "id": "nacl_mozc_us",
+ "description": "Japanese input method.",
+ "language": "ja",
+ "layouts": ["us"]
+ },{
+ "name": "__MSG_mozc_jp_inputmethod__",
+ "type": "ime",
+ "id": "nacl_mozc_jp",
+ "description": "Japanese input method.",
+ "language": "ja",
+ "layouts": ["jp"]
+ }],
+ "options_page": "options.html",
+ "icons": {
+ "128": "product_icon_32bpp-128.png"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698