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

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

Issue 6549015: Extension half of the proxy error event (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/common/extensions/docs
Patch Set: Created 9 years, 10 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 3790 matching lines...) Expand 10 before | Expand all | Expand 10 after
3801 "parameters": [ 3801 "parameters": [
3802 { 3802 {
3803 "name": "config", 3803 "name": "config",
3804 "$ref": "ProxyConfig", 3804 "$ref": "ProxyConfig",
3805 "description": "Configuration, not necessarily a literal copy of the configuration passed to useCustomProxySettings()." 3805 "description": "Configuration, not necessarily a literal copy of the configuration passed to useCustomProxySettings()."
3806 } 3806 }
3807 ] 3807 ]
3808 } 3808 }
3809 ] 3809 ]
3810 } 3810 }
3811 ],
3812 "events": [
3813 {
3814 "name": "onProxyError",
3815 "type": "function",
3816 "description": "Notifies about proxy errors.",
3817 "parameters": [
3818 {
3819 "type": "object",
3820 "name": "details",
3821 "properties": {
3822 "fatal": {
3823 "type": "boolean",
3824 "description": "If true, the error was fatal and the network tra nsaction was aborted. Otherwise, a direct connection is used instead."
3825 },
3826 "error": {
3827 "type": "string",
3828 "description": "The error description."
3829 },
3830 "details": {
3831 "type": "string",
3832 "description": "Additional details about the error such as a Jav aScript runtime error."
3833 }
3834 }
3835 }
3836 ]
3837 }
3811 ] 3838 ]
3812 }, 3839 },
3813 { 3840 {
3814 "namespace": "experimental.clipboard", 3841 "namespace": "experimental.clipboard",
3815 "types": [], 3842 "types": [],
3816 "functions": [ 3843 "functions": [
3817 { 3844 {
3818 "name": "executeCopy", 3845 "name": "executeCopy",
3819 "type": "function", 3846 "type": "function",
3820 "description": "Triggers a copy operation in the specified tab.", 3847 "description": "Triggers a copy operation in the specified tab.",
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
4526 "token": { "type": "string", "optional": true } 4553 "token": { "type": "string", "optional": true }
4527 } 4554 }
4528 } 4555 }
4529 ] 4556 ]
4530 } 4557 }
4531 ] 4558 ]
4532 } 4559 }
4533 ] 4560 ]
4534 } 4561 }
4535 ] 4562 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698