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

Side by Side Diff: chrome/common/extensions/api/events.json

Issue 14494013: Allow API functions and events to have entries in _api_features.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix browser_tests, Stubs now inspects _api_features.json Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "check_unprivileged": true,
cduvall 2013/05/03 02:14:02 This is just necessary while these APIs have not b
11 "unprivileged": true, 12 "unprivileged": true,
12 "types": [ 13 "types": [
13 { 14 {
14 "id": "Rule", 15 "id": "Rule",
15 "type": "object", 16 "type": "object",
16 "description": "Description of a declarative rule for handling events.", 17 "description": "Description of a declarative rule for handling events.",
17 "properties": { 18 "properties": {
18 "id": { 19 "id": {
19 "type": "string", 20 "type": "string",
20 "optional": true, 21 "optional": true,
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 {"type": "array", "items": {"type": "integer"}, "description": " A pair of integers identiying the start and end (both inclusive) of a port range ."} 309 {"type": "array", "items": {"type": "integer"}, "description": " A pair of integers identiying the start and end (both inclusive) of a port range ."}
309 ] 310 ]
310 } 311 }
311 } 312 }
312 } 313 }
313 } 314 }
314 ] 315 ]
315 } 316 }
316 ] 317 ]
317 318
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698