OLD | NEW |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 [ | 1 [ |
6 { | 2 { |
7 "namespace":"management", | 3 "namespace":"management", |
8 "types": [ | 4 "types": [ |
9 { | 5 { |
10 "id": "IconInfo", | 6 "id": "IconInfo", |
11 "description": "Information about an icon belonging to an extension or a
pp.", | 7 "description": "Information about an icon belonging to an extension or a
pp.", |
12 "type": "object", | 8 "type": "object", |
13 "properties": { | 9 "properties": { |
14 "size": { "type": "integer", "description": "A number representing the
width and height of the icon. Likely values include (but are not limited to) 12
8, 48, 24, and 16." }, | 10 "size": { "type": "integer", "description": "A number representing the
width and height of the icon. Likely values include (but are not limited to) 12
8, 48, 24, and 16." }, |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 }, | 270 }, |
275 { | 271 { |
276 "name": "onDisabled", | 272 "name": "onDisabled", |
277 "description": "Fired when an app or extension has been disabled", | 273 "description": "Fired when an app or extension has been disabled", |
278 "type": "function", | 274 "type": "function", |
279 "parameters": [{"name": "info", "$ref":"ExtensionInfo"}] | 275 "parameters": [{"name": "info", "$ref":"ExtensionInfo"}] |
280 } | 276 } |
281 ] | 277 ] |
282 } | 278 } |
283 ] | 279 ] |
OLD | NEW |