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

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

Issue 11827026: Overhaul JSON Schema Compiler to support a number of features required to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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": "app", 7 "namespace": "app",
8 "nodoc": true, 8 "nodoc": true,
9 "unprivileged": true, 9 "unprivileged": true,
10 "matches": [ "<all_urls>" ], 10 "matches": [ "<all_urls>" ],
(...skipping 28 matching lines...) Expand all
39 "name": "installState", 39 "name": "installState",
40 "description": "TODO", 40 "description": "TODO",
41 "type": "function", 41 "type": "function",
42 "parameters": [ 42 "parameters": [
43 { 43 {
44 "type": "function", 44 "type": "function",
45 "name": "callback", 45 "name": "callback",
46 "parameters": [ 46 "parameters": [
47 { 47 {
48 "type": "string", 48 "type": "string",
49 "name": "state",
49 "enum": [ "not_installed", "installed", "disabled" ] 50 "enum": [ "not_installed", "installed", "disabled" ]
50 } 51 }
51 ] 52 ]
52 } 53 }
53 ] 54 ]
54 }, 55 },
55 { 56 {
56 "name": "runningState", 57 "name": "runningState",
57 "description": "TODO", 58 "description": "TODO",
58 "type": "function", 59 "type": "function",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ], 93 ],
93 "returns": { 94 "returns": {
94 "$ref": "Details", 95 "$ref": "Details",
95 "optional": true, 96 "optional": true,
96 "description": "TODO" 97 "description": "TODO"
97 } 98 }
98 } 99 }
99 ] 100 ]
100 } 101 }
101 ] 102 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698