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

Unified Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2877423004: without the plumbing!
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/inspector/browser_protocol.json
diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json
index 0060d55ef89f30e039effde25b5e314377b9e6e6..dbddd4c6327f807760c1b135944c85aa86710109 100644
--- a/third_party/WebKit/Source/core/inspector/browser_protocol.json
+++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json
@@ -1112,6 +1112,17 @@
"description": "Unique request identifier."
},
{
+ "id": "InterceptId",
+ "type": "string",
+ "description": "Unique intercepted request identifier."
+ },
+ {
+ "id": "ErrorReason",
+ "type": "string",
+ "enum": ["Failed", "Aborted", "TimedOut", "AccessDenied", "ConnectionClosed", "ConnectionReset", "ConnectionRefused", "ConnectionAborted", "ConnectionFailed", "NameNotResolved", "InternetDisconnected", "AddressUnreachable"],
+ "description": "Network level fetch failure reason."
+ },
+ {
"id": "Timestamp",
"type": "number",
"description": "Number of seconds since epoch."
@@ -1495,6 +1506,51 @@
{ "name": "tableNames", "type": "array", "items": { "type": "string" } }
],
"experimental": true
+ },
+ {
+ "name": "enableFetchInterception",
+ "parameters": [
+ { "name": "enabled", "type": "boolean", "description": "Whether or not HTTP requests should be intercepted and Network.interceptedRequest events sent." }
+ ],
+ "experimental": true
+ },
+ {
+ "name": "allowRequest",
+ "description": "Response to Network.interceptedRequest which allows the request to proceed unchanged.",
+ "parameters": [
+ { "name": "interceptId", "$ref": "InterceptId" }
+ ],
+ "experimental": true
+ },
+ {
+ "name": "blockRequest",
+ "description": "Response to Network.interceptedRequest which causes the request to fail.",
+ "parameters": [
+ { "name": "interceptId", "$ref": "InterceptId" },
+ { "name": "errorReason", "$ref": "ErrorReason" }
+ ],
+ "experimental": true
+ },
+ {
+ "name": "modifyRequest",
+ "description": "Response to Network.interceptedRequest which modifies any or all fetch parameters before allowing the request to proceed.",
+ "parameters": [
+ { "name": "interceptId", "$ref": "InterceptId" },
+ { "name": "url", "type": "string", "optional": true },
+ { "name": "method", "type": "string", "optional": true },
+ { "name": "postData", "type": "string", "optional": true },
+ { "name": "headers", "$ref": "Headers", "optional": true }
+ ],
+ "experimental": true
+ },
+ {
+ "name": "mockResponse",
+ "description": "Response to Network.interceptedRequest which makes the request complete with the provided mock response.",
+ "parameters": [
+ { "name": "interceptId", "$ref": "InterceptId" },
+ { "name": "rawResponse", "type": "string" }
+ ],
+ "experimental": true
}
],
"events": [
@@ -1655,6 +1711,26 @@
{ "name": "data", "type": "string", "description": "Message content." }
],
"experimental": true
+ },
+ {
+ "name": "interceptedRequest",
+ "description": "Details of an intercepted HTTP request, which must be either allowed, blocked, modified or mocked.",
+ "parameters": [
+ { "name": "requestId", "$ref": "RequestId" },
+ { "name": "request", "$ref": "Request" }
+ ],
+ "experimental": true
+ },
+ {
+ "name": "interceptedRedirect",
+ "description": "Details of an intercepted HTTP redirect, which must be either allowed, blocked, modified or mocked.",
+ "parameters": [
+ { "name": "requestId", "$ref": "RequestId" },
+ { "name": "responseHeaders", "$ref": "Headers", "description": "HTTP response headers." },
+ { "name": "responseStatusCode", "type": "integer", "description": "HTTP response code."},
+ { "name": "redirectUrl", "type": "string" }
+ ],
+ "experimental": true
}
]
},

Powered by Google App Engine
This is Rietveld 408576698