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 "types": [ | 8 "types": [ |
9 { | 9 { |
10 "id": "ExtensionEvent", | 10 "id": "ExtensionEvent", |
11 "type": "object", | 11 "type": "object", |
12 "description": "The event to describe a significant occurence with an ex
tension in Chrome, including installation, uninstallation, enablement, disableme
nt, and update.", | 12 "description": "The event to describe a significant occurrence with an e
xtension in Chrome, including installation, uninstallation, enablement, disablem
ent, and update.", |
13 "properties": { | 13 "properties": { |
14 "eventType": {"type": "integer", "description": "The type of the event
."}, | 14 "eventType": {"type": "integer", "description": "The type of the event
."}, |
15 "time": {"type": "number", "description": "The time at which the event
was recorded."}, | 15 "time": {"type": "number", "description": "The time at which the event
was recorded."}, |
16 "extensionId": {"type": "string", "description": "The extension's id."
}, | 16 "extensionId": {"type": "string", "description": "The extension's id."
}, |
17 "extensionName": {"type": "string", "description": "The extension's na
me."}, | 17 "extensionName": {"type": "string", "description": "The extension's na
me."}, |
18 "extensionUrl": {"type": "string", "description": "The extension's url
."}, | 18 "extensionUrl": {"type": "string", "description": "The extension's url
."}, |
19 "extensionLocation": {"type": "integer", "description": "The extension
's install location."}, | 19 "extensionLocation": {"type": "integer", "description": "The extension
's install location."}, |
20 "extensionVersion": {"type": "string", "description": "The string repr
epresentation of the extension's version."}, | 20 "extensionVersion": {"type": "string", "description": "The string repr
epresentation of the extension's version."}, |
21 "extensionDescription": {"type": "string", "description": "The extensi
on's description."} | 21 "extensionDescription": {"type": "string", "description": "The extensi
on's description."} |
22 } | 22 } |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "description": "The event to represent an unclean exit.", | 57 "description": "The event to represent an unclean exit.", |
58 "properties": { | 58 "properties": { |
59 "eventType": {"type": "integer", "description": "The type of the event
."}, | 59 "eventType": {"type": "integer", "description": "The type of the event
."}, |
60 "time": {"type": "number", "description": "The time at which the event
was recorded."}, | 60 "time": {"type": "number", "description": "The time at which the event
was recorded."}, |
61 "profileName": {"type": "string", "description": "The name of the prof
ile which shutdown uncleanly."} | 61 "profileName": {"type": "string", "description": "The name of the prof
ile which shutdown uncleanly."} |
62 } | 62 } |
63 } | 63 } |
64 ] | 64 ] |
65 } | 65 } |
66 ] | 66 ] |
OLD | NEW |