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

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

Issue 6683060: Private API for extensions like ssh-client that need access to TCP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: c Created 9 years, 8 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 4627 matching lines...) Expand 10 before | Expand all | Expand 10 after
4638 "token": { "type": "string", "optional": true } 4638 "token": { "type": "string", "optional": true }
4639 } 4639 }
4640 } 4640 }
4641 ] 4641 ]
4642 } 4642 }
4643 ] 4643 ]
4644 } 4644 }
4645 ] 4645 ]
4646 }, 4646 },
4647 { 4647 {
4648 "namespace": "webProxyPrivate",
4649 "nodoc": true,
4650 "types": [],
4651 "functions": [
4652 {
4653 "name": "getToken",
4654 "type": "function",
4655 "description": "requests authorization token for websocket to TCP proxy. ",
4656 "parameters": [
4657 {
4658 "name": "hostname",
4659 "type": "string",
4660 "description": "hostname to which TCP connection is requested."
4661 },
4662 {
4663 "name": "port",
4664 "type": "integer",
4665 "minimum": 1,
4666 "maximum": 65535,
4667 "description": "TCP port number."
4668 }
4669 ]
4670 }
4671 ],
4672 "events": []
4673 },
4674 {
4648 "namespace": "experimental.extension", 4675 "namespace": "experimental.extension",
4649 "types": [ 4676 "types": [
4650 { 4677 {
4651 "id": "Preference", 4678 "id": "Preference",
4652 "type": "object", 4679 "type": "object",
4653 "customBindings": "Preference", 4680 "customBindings": "Preference",
4654 "description": "An object which allows access to a preference.", 4681 "description": "An object which allows access to a preference.",
4655 "functions": [ 4682 "functions": [
4656 { 4683 {
4657 "name": "get", 4684 "name": "get",
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
4924 { 4951 {
4925 "type": "integer", 4952 "type": "integer",
4926 "name": "tabId", 4953 "name": "tabId",
4927 "description": "The id of the tab that was detached." 4954 "description": "The id of the tab that was detached."
4928 } 4955 }
4929 ] 4956 ]
4930 } 4957 }
4931 ] 4958 ]
4932 } 4959 }
4933 ] 4960 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698