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.
8 "description": "Performance monitor events",
11 "id": "ExtensionEvent",
13 "description": "The event to describe a significant occurrence with an extension in Chrome, including installation, uninstallation, enablement, disablement, and update.",
15 "eventType": {"type": "integer", "description": "The type of the event."},
16 "time": {"type": "number", "description": "The time at which the event was recorded."},
17 "extensionId": {"type": "string", "description": "The extension's id."},
18 "extensionName": {"type": "string", "description": "The extension's name."},
19 "extensionUrl": {"type": "string", "description": "The extension's url."},
20 "extensionLocation": {"type": "integer", "description": "The extension's install location."},
21 "extensionVersion": {"type": "string", "description": "The string reprepresentation of the extension's version."},
22 "extensionDescription": {"type": "string", "description": "The extension's description."}
28 "description": "The event to describe an update to Chrome; this will be recognized on startup by a change in the version number.",
30 "eventType": {"type": "integer", "description": "The type of the event."},
31 "time": {"type": "number", "description": "The time at which the event was recorded."},
32 "previousVersion": {"type": "string", "description": "The string representation of the previous Chrome version."},
33 "currentVersion": {"type": "string", "description": "The string representation of the current Chrome version."}
37 "id": "RendererFailure",
39 "description": "The event to represent a renderer hanging, crashing, or being killed.",
41 "eventType": {"type": "integer", "description": "The type of the event."},
42 "time": {"type": "number", "description": "The time at which the event was recorded."},
43 "url": {"type": "string", "description": "The url (or urls) associated with the renderer failure, if available (if unavailable, this is empty)."}
49 "description": "The event to represent an unclean exit.",
51 "eventType": {"type": "integer", "description": "The type of the event."},
52 "time": {"type": "number", "description": "The time at which the event was recorded."},
53 "profileName": {"type": "string", "description": "The name of the profile which shutdown uncleanly."}