summaryrefslogtreecommitdiff
path: root/chromium/extensions/common/api/web_request_internal.json
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/extensions/common/api/web_request_internal.json')
-rw-r--r--chromium/extensions/common/api/web_request_internal.json62
1 files changed, 62 insertions, 0 deletions
diff --git a/chromium/extensions/common/api/web_request_internal.json b/chromium/extensions/common/api/web_request_internal.json
new file mode 100644
index 00000000000..4adcd06dacb
--- /dev/null
+++ b/chromium/extensions/common/api/web_request_internal.json
@@ -0,0 +1,62 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+[
+ {
+ "namespace": "webRequestInternal",
+ "description": "none",
+ "compiler_options": {
+ "implemented_in": "extensions/browser/api/web_request/web_request_api.h"
+ },
+ "types": [
+ {
+ "id": "AddEventListenerOptions",
+ "type": "string",
+ "enum": ["requestHeaders", "responseHeaders", "blocking", "asyncBlocking", "requestBody"]
+ }
+ ],
+ "functions": [
+ {
+ "name": "addEventListener",
+ "type": "function",
+ "description": "Used internally to implement the special form of addListener for the webRequest events.",
+ "parameters": [
+ {"type": "function", "name": "callback"},
+ {
+ "$ref": "webRequest.RequestFilter",
+ "name": "filter",
+ "description": "A set of filters that restricts the events that will be sent to this listener."
+ },
+ {
+ "type": "array",
+ "optional": true,
+ "name": "extraInfoSpec",
+ "description": "Array of extra information that should be passed to the listener function.",
+ "items": {
+ "$ref": "AddEventListenerOptions"
+ }
+ },
+ {"type": "string", "name": "eventName"},
+ {"type": "string", "name": "subEventName"},
+ {"type": "integer", "name": "webViewInstanceId"}
+ ]
+ },
+ {
+ "name": "eventHandled",
+ "type": "function",
+ "description": "Used internally to send a response for a blocked event.",
+ "parameters": [
+ {"type": "string", "name": "eventName"},
+ {"type": "string", "name": "subEventName"},
+ {"type": "string", "name": "requestId"},
+ {
+ "$ref": "webRequest.BlockingResponse",
+ "optional": true,
+ "name": "response"
+ }
+ ]
+ }
+ ]
+ }
+]