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

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

Issue 8520035: Revert 110264 - Fix for management API related to escalated permissions disabled extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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 },
6904 "isApp": { 6898 "isApp": {
6905 "description": "True if this is an app.", 6899 "description": "True if this is an app.",
6906 "type": "boolean" 6900 "type": "boolean"
6907 }, 6901 },
6908 "appLaunchUrl": { 6902 "appLaunchUrl": {
6909 "description": "The launch url (only present for apps).", 6903 "description": "The launch url (only present for apps).",
6910 "type": "string", 6904 "type": "string",
6911 "optional": true 6905 "optional": true
6912 }, 6906 },
6913 "homepageUrl": { 6907 "homepageUrl": {
(...skipping 2300 matching lines...) Expand 10 before | Expand all | Expand 10 after
9214 } 9208 }
9215 } 9209 }
9216 } 9210 }
9217 ] 9211 ]
9218 } 9212 }
9219 ] 9213 ]
9220 } 9214 }
9221 ] 9215 ]
9222 } 9216 }
9223 ] 9217 ]
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