OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [ | 5 [ |
6 { | 6 { |
7 "namespace": "webRequestInternal", | 7 "namespace": "webRequestInternal", |
8 "dependencies": ["webRequest"], | |
9 "nodoc": true, | 8 "nodoc": true, |
10 "internal": true, | 9 "internal": true, |
11 "functions": [ | 10 "functions": [ |
12 { | 11 { |
13 "name": "addEventListener", | 12 "name": "addEventListener", |
14 "type": "function", | 13 "type": "function", |
15 "description": "Used internally to implement the special form of addList
ener for the webRequest events.", | 14 "description": "Used internally to implement the special form of addList
ener for the webRequest events.", |
16 "parameters": [ | 15 "parameters": [ |
17 {"type": "function", "name": "callback"}, | 16 {"type": "function", "name": "callback"}, |
18 { | 17 { |
(...skipping 26 matching lines...) Expand all Loading... |
45 { | 44 { |
46 "$ref": "webRequest.BlockingResponse", | 45 "$ref": "webRequest.BlockingResponse", |
47 "optional": true, | 46 "optional": true, |
48 "name": "response" | 47 "name": "response" |
49 } | 48 } |
50 ] | 49 ] |
51 } | 50 } |
52 ] | 51 ] |
53 } | 52 } |
54 ] | 53 ] |
OLD | NEW |