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

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

Issue 14241030: Revert 195143 "Prevent chrome.app JSON schema from loading on ev..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 8 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,
10 "matches": [ "<all_urls>" ],
9 "types": [ 11 "types": [
10 { 12 {
11 "id": "Details", 13 "id": "Details",
12 "description": "TODO (it's a manifest)", 14 "description": "TODO (it's a manifest)",
13 "type": "object", 15 "type": "object",
14 "properties": {}, 16 "properties": {},
15 "additionalProperties": { "type": "any" } 17 "additionalProperties": { "type": "any" }
16 }, 18 },
17 { 19 {
18 "id": "DOMWindow", 20 "id": "DOMWindow",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ], 87 ],
86 "returns": { 88 "returns": {
87 "$ref": "Details", 89 "$ref": "Details",
88 "optional": true, 90 "optional": true,
89 "description": "TODO" 91 "description": "TODO"
90 } 92 }
91 } 93 }
92 ] 94 ]
93 } 95 }
94 ] 96 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698