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

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

Issue 10703078: Add Unclean Exit Watching to CPM (Closed) Base URL: http://git.chromium.org/chromium/src.git@dc_crash_event_watching
Patch Set: Requested changes made 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698