Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: chrome/browser/performance_monitor/events.json

Issue 10815079: CPM: revised unclean exit watching, revised renderer crash test (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698