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": "events", | 7 "namespace": "events", |
8 "compiler_options": { | 8 "compiler_options": { |
9 "implemented_in": "chrome/browser/extensions/api/declarative/declarative_a
pi.h" | 9 "implemented_in": "chrome/browser/extensions/api/declarative/declarative_a
pi.h" |
10 }, | 10 }, |
11 "unprivileged": true, | |
12 "types": [ | 11 "types": [ |
13 { | 12 { |
14 "id": "Rule", | 13 "id": "Rule", |
15 "type": "object", | 14 "type": "object", |
16 "description": "Description of a declarative rule for handling events.", | 15 "description": "Description of a declarative rule for handling events.", |
17 "properties": { | 16 "properties": { |
18 "id": { | 17 "id": { |
19 "type": "string", | 18 "type": "string", |
20 "optional": true, | 19 "optional": true, |
21 "description": "Optional identifier that allows referencing this rul
e." | 20 "description": "Optional identifier that allows referencing this rul
e." |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 {"type": "array", "items": {"type": "integer"}, "description": "
A pair of integers identiying the start and end (both inclusive) of a port range
."} | 307 {"type": "array", "items": {"type": "integer"}, "description": "
A pair of integers identiying the start and end (both inclusive) of a port range
."} |
309 ] | 308 ] |
310 } | 309 } |
311 } | 310 } |
312 } | 311 } |
313 } | 312 } |
314 ] | 313 ] |
315 } | 314 } |
316 ] | 315 ] |
317 | 316 |
OLD | NEW |