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

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

Issue 23983003: DevTools: Remove Network.requestServedFromMemoryCache event from protocol. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Dirty hack: removed event from published protocol version. Created 7 years, 3 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/devtools/front_end/NetworkManager.js ('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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 "name": "loadingFailed", 1140 "name": "loadingFailed",
1141 "description": "Fired when HTTP request has failed to load.", 1141 "description": "Fired when HTTP request has failed to load.",
1142 "parameters": [ 1142 "parameters": [
1143 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1143 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1144 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1144 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1145 { "name": "errorText", "type": "string", "description": "Use r friendly error message." }, 1145 { "name": "errorText", "type": "string", "description": "Use r friendly error message." },
1146 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." } 1146 { "name": "canceled", "type": "boolean", "optional": true, " description": "True if loading was canceled." }
1147 ] 1147 ]
1148 }, 1148 },
1149 { 1149 {
1150 "name": "requestServedFromMemoryCache",
1151 "description": "Fired when HTTP request has been served from mem ory cache.",
1152 "parameters": [
1153 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1154 { "name": "frameId", "$ref": "Page.FrameId", "description": "Frame identifier.", "hidden": true },
1155 { "name": "loaderId", "$ref": "LoaderId", "description": "Lo ader identifier." },
1156 { "name": "documentURL", "type": "string", "description": "U RL of the document this request is loaded for." },
1157 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1158 { "name": "initiator", "$ref": "Initiator", "description": " Request initiator." },
1159 { "name": "resource", "$ref": "CachedResource", "description ": "Cached resource data." }
1160 ]
1161 },
1162 {
1163 "name": "webSocketWillSendHandshakeRequest", 1150 "name": "webSocketWillSendHandshakeRequest",
1164 "description": "Fired when WebSocket is about to initiate handsh ake.", 1151 "description": "Fired when WebSocket is about to initiate handsh ake.",
1165 "parameters": [ 1152 "parameters": [
1166 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." }, 1153 { "name": "requestId", "$ref": "RequestId", "description": " Request identifier." },
1167 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." }, 1154 { "name": "timestamp", "$ref": "Timestamp", "description": " Timestamp." },
1168 { "name": "request", "$ref": "WebSocketRequest", "descriptio n": "WebSocket request data." } 1155 { "name": "request", "$ref": "WebSocketRequest", "descriptio n": "WebSocket request data." }
1169 ], 1156 ],
1170 "hidden": true 1157 "hidden": true
1171 }, 1158 },
1172 { 1159 {
(...skipping 2771 matching lines...) Expand 10 before | Expand all | Expand 10 after
3944 "parameters": [ 3931 "parameters": [
3945 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 3932 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
3946 ] 3933 ]
3947 }, 3934 },
3948 { 3935 {
3949 "name": "tracingComplete" 3936 "name": "tracingComplete"
3950 } 3937 }
3951 ] 3938 ]
3952 }] 3939 }]
3953 } 3940 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/NetworkManager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698