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

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

Issue 16876004: Updating JSON Schema Compiler to add description field to schemas. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (kalman) rebase Created 7 years, 6 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
« no previous file with comments | « no previous file | chrome/common/extensions/api/activity_log_private.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "description": "Performance monitor events",
8 "types": [ 9 "types": [
9 { 10 {
10 "id": "ExtensionEvent", 11 "id": "ExtensionEvent",
11 "type": "object", 12 "type": "object",
12 "description": "The event to describe a significant occurrence with an e xtension in Chrome, including installation, uninstallation, enablement, disablem ent, and update.", 13 "description": "The event to describe a significant occurrence with an e xtension in Chrome, including installation, uninstallation, enablement, disablem ent, and update.",
13 "properties": { 14 "properties": {
14 "eventType": {"type": "integer", "description": "The type of the event ."}, 15 "eventType": {"type": "integer", "description": "The type of the event ."},
15 "time": {"type": "number", "description": "The time at which the event was recorded."}, 16 "time": {"type": "number", "description": "The time at which the event was recorded."},
16 "extensionId": {"type": "string", "description": "The extension's id." }, 17 "extensionId": {"type": "string", "description": "The extension's id." },
17 "extensionName": {"type": "string", "description": "The extension's na me."}, 18 "extensionName": {"type": "string", "description": "The extension's na me."},
(...skipping 30 matching lines...) Expand all
48 "description": "The event to represent an unclean exit.", 49 "description": "The event to represent an unclean exit.",
49 "properties": { 50 "properties": {
50 "eventType": {"type": "integer", "description": "The type of the event ."}, 51 "eventType": {"type": "integer", "description": "The type of the event ."},
51 "time": {"type": "number", "description": "The time at which the event was recorded."}, 52 "time": {"type": "number", "description": "The time at which the event was recorded."},
52 "profileName": {"type": "string", "description": "The name of the prof ile which shutdown uncleanly."} 53 "profileName": {"type": "string", "description": "The name of the prof ile which shutdown uncleanly."}
53 } 54 }
54 } 55 }
55 ] 56 ]
56 } 57 }
57 ] 58 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/activity_log_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698