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

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

Issue 10827290: Add a commandline switch to run PerformanceMonitor (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed comment Created 8 years, 4 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 | « chrome/browser/chrome_browser_main.cc ('k') | chrome/common/chrome_switches.h » ('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 "types": [ 8 "types": [
9 { 9 {
10 "id": "ExtensionEvent", 10 "id": "ExtensionEvent",
11 "type": "object", 11 "type": "object",
12 "description": "The event to describe a significant occurence with an ex tension in Chrome, including installation, uninstallation, enablement, disableme nt, and update.", 12 "description": "The event to describe a significant occurrence with an e xtension in Chrome, including installation, uninstallation, enablement, disablem ent, and update.",
13 "properties": { 13 "properties": {
14 "eventType": {"type": "integer", "description": "The type of the event ."}, 14 "eventType": {"type": "integer", "description": "The type of the event ."},
15 "time": {"type": "number", "description": "The time at which the event was recorded."}, 15 "time": {"type": "number", "description": "The time at which the event was recorded."},
16 "extensionId": {"type": "string", "description": "The extension's id." }, 16 "extensionId": {"type": "string", "description": "The extension's id." },
17 "extensionName": {"type": "string", "description": "The extension's na me."}, 17 "extensionName": {"type": "string", "description": "The extension's na me."},
18 "extensionUrl": {"type": "string", "description": "The extension's url ."}, 18 "extensionUrl": {"type": "string", "description": "The extension's url ."},
19 "extensionLocation": {"type": "integer", "description": "The extension 's install location."}, 19 "extensionLocation": {"type": "integer", "description": "The extension 's install location."},
20 "extensionVersion": {"type": "string", "description": "The string repr epresentation of the extension's version."}, 20 "extensionVersion": {"type": "string", "description": "The string repr epresentation of the extension's version."},
21 "extensionDescription": {"type": "string", "description": "The extensi on's description."} 21 "extensionDescription": {"type": "string", "description": "The extensi on's description."}
22 } 22 }
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "description": "The event to represent an unclean exit.", 57 "description": "The event to represent an unclean exit.",
58 "properties": { 58 "properties": {
59 "eventType": {"type": "integer", "description": "The type of the event ."}, 59 "eventType": {"type": "integer", "description": "The type of the event ."},
60 "time": {"type": "number", "description": "The time at which the event was recorded."}, 60 "time": {"type": "number", "description": "The time at which the event was recorded."},
61 "profileName": {"type": "string", "description": "The name of the prof ile which shutdown uncleanly."} 61 "profileName": {"type": "string", "description": "The name of the prof ile which shutdown uncleanly."}
62 } 62 }
63 } 63 }
64 ] 64 ]
65 } 65 }
66 ] 66 ]
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698