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

Side by Side Diff: Source/devtools/protocol.json

Issue 16199002: DevTools: Support asynchronous loading of resources without cross origin checks through backend for… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ... Created 7 years, 6 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
« no previous file with comments | « Source/core/xml/XMLHttpRequest.cpp ('k') | no next file » | 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 "version": { "major": "1", "minor": "0" }, 2 "version": { "major": "1", "minor": "0" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 { 1037 {
1038 "name": "clearBrowserCookies", 1038 "name": "clearBrowserCookies",
1039 "description": "Clears browser cookies." 1039 "description": "Clears browser cookies."
1040 }, 1040 },
1041 { 1041 {
1042 "name": "setCacheDisabled", 1042 "name": "setCacheDisabled",
1043 "parameters": [ 1043 "parameters": [
1044 { "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." } 1044 { "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." }
1045 ], 1045 ],
1046 "description": "Toggles ignoring cache for each request. If <cod e>true</code>, cache will not be used." 1046 "description": "Toggles ignoring cache for each request. If <cod e>true</code>, cache will not be used."
1047 },
1048 {
1049 "name": "loadResourceForFrontend",
1050 "async": true,
1051 "parameters": [
1052 { "name": "frameId", "$ref": "FrameId", "description": "Fram e to load the resource from." },
1053 { "name": "url", "type": "string", "description": "URL of th e resource to load." }
1054 ],
1055 "returns": [
1056 { "name": "content", "type": "string", "description": "Resou rce content." }
1057 ],
1058 "description": "Loads a resource in the context of a frame on th e inspected page without cross origin checks.",
1059 "hidden": true
1047 } 1060 }
1048 ], 1061 ],
1049 "events": [ 1062 "events": [
1050 { 1063 {
1051 "name": "requestWillBeSent", 1064 "name": "requestWillBeSent",
1052 "description": "Fired when page is about to send HTTP request.", 1065 "description": "Fired when page is about to send HTTP request.",
1053 "parameters": [ 1066 "parameters": [
1054 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1067 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1055 { "name": "frameId", "$ref": "FrameId", "description": "Fram e identifier.", "hidden": true }, 1068 { "name": "frameId", "$ref": "FrameId", "description": "Fram e identifier.", "hidden": true },
1056 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." }, 1069 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." },
(...skipping 2681 matching lines...) Expand 10 before | Expand all | Expand 10 after
3738 ] 3751 ]
3739 } 3752 }
3740 ], 3753 ],
3741 "events": [ 3754 "events": [
3742 { 3755 {
3743 "name": "layerTreeDidChange" 3756 "name": "layerTreeDidChange"
3744 } 3757 }
3745 ] 3758 ]
3746 }] 3759 }]
3747 } 3760 }
OLDNEW
« no previous file with comments | « Source/core/xml/XMLHttpRequest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698