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