summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/api/web_request_internal.json
blob: 4c56b5d11812c752adc2c057a14e3b33c16f10c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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",
    "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": {
              "type": "string",
              "enum": ["requestHeaders", "responseHeaders", "blocking", "asyncBlocking", "requestBody"]
            }
          },
          {"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"
          }
        ]
      }
    ]
  }
]