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 "description": "Performance monitor events", |
8 "types": [ | 9 "types": [ |
9 { | 10 { |
10 "id": "ExtensionEvent", | 11 "id": "ExtensionEvent", |
11 "type": "object", | 12 "type": "object", |
12 "description": "The event to describe a significant occurrence with an e
xtension in Chrome, including installation, uninstallation, enablement, disablem
ent, and update.", | 13 "description": "The event to describe a significant occurrence with an e
xtension in Chrome, including installation, uninstallation, enablement, disablem
ent, and update.", |
13 "properties": { | 14 "properties": { |
14 "eventType": {"type": "integer", "description": "The type of the event
."}, | 15 "eventType": {"type": "integer", "description": "The type of the event
."}, |
15 "time": {"type": "number", "description": "The time at which the event
was recorded."}, | 16 "time": {"type": "number", "description": "The time at which the event
was recorded."}, |
16 "extensionId": {"type": "string", "description": "The extension's id."
}, | 17 "extensionId": {"type": "string", "description": "The extension's id."
}, |
17 "extensionName": {"type": "string", "description": "The extension's na
me."}, | 18 "extensionName": {"type": "string", "description": "The extension's na
me."}, |
(...skipping 30 matching lines...) Expand all Loading... |
48 "description": "The event to represent an unclean exit.", | 49 "description": "The event to represent an unclean exit.", |
49 "properties": { | 50 "properties": { |
50 "eventType": {"type": "integer", "description": "The type of the event
."}, | 51 "eventType": {"type": "integer", "description": "The type of the event
."}, |
51 "time": {"type": "number", "description": "The time at which the event
was recorded."}, | 52 "time": {"type": "number", "description": "The time at which the event
was recorded."}, |
52 "profileName": {"type": "string", "description": "The name of the prof
ile which shutdown uncleanly."} | 53 "profileName": {"type": "string", "description": "The name of the prof
ile which shutdown uncleanly."} |
53 } | 54 } |
54 } | 55 } |
55 ] | 56 ] |
56 } | 57 } |
57 ] | 58 ] |
OLD | NEW |