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

Side by Side Diff: chrome/common/extensions/api/extension_api.json

Issue 8488012: Fix for management API related to escalated permissions disabled extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased again Created 9 years, 1 month 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/extensions/docs/management.html » ('j') | 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 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "MessageSender", 6 "id": "MessageSender",
7 "type": "object", 7 "type": "object",
8 "description": "An object containing information about the script contex t that sent a message or request.", 8 "description": "An object containing information about the script contex t that sent a message or request.",
9 "properties": { 9 "properties": {
10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."}, 10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."},
(...skipping 6877 matching lines...) Expand 10 before | Expand all | Expand 10 after
6888 "type": "string" 6888 "type": "string"
6889 }, 6889 },
6890 "mayDisable": { 6890 "mayDisable": {
6891 "description": "Whether this extension can be disabled or uninstalle d by the user.", 6891 "description": "Whether this extension can be disabled or uninstalle d by the user.",
6892 "type": "boolean" 6892 "type": "boolean"
6893 }, 6893 },
6894 "enabled": { 6894 "enabled": {
6895 "description": "Whether it is currently enabled or disabled.", 6895 "description": "Whether it is currently enabled or disabled.",
6896 "type": "boolean" 6896 "type": "boolean"
6897 }, 6897 },
6898 "disabledReason": {
6899 "description": "A reason the item is disabled.",
6900 "type": "string",
6901 "enum": ["unknown", "permissions_increase"],
6902 "optional": true
6903 },
6898 "isApp": { 6904 "isApp": {
6899 "description": "True if this is an app.", 6905 "description": "True if this is an app.",
6900 "type": "boolean" 6906 "type": "boolean"
6901 }, 6907 },
6902 "appLaunchUrl": { 6908 "appLaunchUrl": {
6903 "description": "The launch url (only present for apps).", 6909 "description": "The launch url (only present for apps).",
6904 "type": "string", 6910 "type": "string",
6905 "optional": true 6911 "optional": true
6906 }, 6912 },
6907 "homepageUrl": { 6913 "homepageUrl": {
(...skipping 2300 matching lines...) Expand 10 before | Expand all | Expand 10 after
9208 } 9214 }
9209 } 9215 }
9210 } 9216 }
9211 ] 9217 ]
9212 } 9218 }
9213 ] 9219 ]
9214 } 9220 }
9215 ] 9221 ]
9216 } 9222 }
9217 ] 9223 ]
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/extensions/docs/management.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698