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": "ExtensionInstall", | 10 "id": "ExtensionInstall", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "id": "RendererFreeze", | 106 "id": "RendererFreeze", |
107 "type": "object", | 107 "type": "object", |
108 "description": "The event to represent a frozen renderer (when the froze
n tab popup comes up).", | 108 "description": "The event to represent a frozen renderer (when the froze
n tab popup comes up).", |
109 "properties": { | 109 "properties": { |
110 "eventType": {"type": "integer", "description": "The type of the event
."}, | 110 "eventType": {"type": "integer", "description": "The type of the event
."}, |
111 "time": {"type": "number", "description": "The time at which the event
was recorded."}, | 111 "time": {"type": "number", "description": "The time at which the event
was recorded."}, |
112 "url": {"type": "string", "description": "The crash url."} | 112 "url": {"type": "string", "description": "The crash url."} |
113 } | 113 } |
114 }, | 114 }, |
115 { | 115 { |
116 "id": "UncleanShutdown", | 116 "id": "UncleanExit", |
117 "type": "object", | 117 "type": "object", |
118 "description": "The event to represent an unclean shutdown.", | 118 "description": "The event to represent an unclean exit.", |
119 "properties": { | 119 "properties": { |
120 "eventType": {"type": "integer", "description": "The type of the event
."}, | 120 "eventType": {"type": "integer", "description": "The type of the event
."}, |
121 "time": {"type": "number", "description": "The time at which the event
was recorded."} | 121 "time": {"type": "number", "description": "The time at which the event
was recorded."}, |
| 122 "profileName": {"type": "string", "description": "The name of the prof
ile which shutdown uncleanly."} |
122 } | 123 } |
123 } | 124 } |
124 ] | 125 ] |
125 } | 126 } |
126 ] | 127 ] |
OLD | NEW |