Use JSON schema compiler in chrome.management code

BUG=121174


Review URL: https://chromiumcodereview.appspot.com/10834160

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151113 0039d316-1c4b-4281-b951-d872f2087c98
parent 6ee9f864
......@@ -28,6 +28,7 @@
'i18n.json',
'font_settings.json',
'history.json',
'management.json',
'page_capture.json',
'permissions.json',
'storage.json',
......
......@@ -100,8 +100,9 @@
}
},
"installType": {
"description": "How the extension was installed (\"admin\", \"development\", \"normal\", \"sideload\", \"other\"). \"admin\" means the extension was installed because of an administrative policy. \"development\" means the extension was loaded unpacked in developer mode. \"normal\" means the extension was installed normally via a .crx file. \"sideload\" means the extension was installed by other software on the machine. \"other\" means the extension was installed by other means.",
"type": "string"
"description": "How the extension was installed. One of<br><var>admin</var>: The extension was installed because of an administrative policy,<br><var>development</var>: The extension was loaded unpacked in developer mode,<br><var>normal</var>: The extension was installed normally via a .crx file,<br><var>sideload</var>: The extension was installed by other software on the machine,<br><var>other</var>: The extension was installed by other means.",
"type": "string",
"enum": ["admin", "development", "normal", "sideload", "other"]
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment