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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/profiler/module.json

Issue 2188413004: DevTools: Remove Advanced heap snapshot properties setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 { 1 {
2 "extensions": [ 2 "extensions": [
3 { 3 {
4 "type": "@WebInspector.Panel", 4 "type": "@WebInspector.Panel",
5 "name": "profiles", 5 "name": "profiles",
6 "title": "Profiles", 6 "title": "Profiles",
7 "order": 60, 7 "order": 60,
8 "className": "WebInspector.ProfilesPanel" 8 "className": "WebInspector.ProfilesPanel"
9 }, 9 },
10 { 10 {
11 "type": "@WebInspector.ContextMenu.Provider", 11 "type": "@WebInspector.ContextMenu.Provider",
12 "contextTypes": ["WebInspector.RemoteObject"], 12 "contextTypes": ["WebInspector.RemoteObject"],
13 "className": "WebInspector.ProfilesPanel.ContextMenuProvider" 13 "className": "WebInspector.ProfilesPanel.ContextMenuProvider"
14 }, 14 },
15 { 15 {
16 "type": "setting", 16 "type": "setting",
17 "category": "Profiler", 17 "category": "Profiler",
18 "title": "Show advanced heap snapshot properties",
19 "settingName": "showAdvancedHeapSnapshotProperties",
20 "settingType": "boolean",
21 "defaultValue": false
22 },
23 {
24 "type": "setting",
25 "category": "Profiler",
26 "title": "Record heap allocation stack traces", 18 "title": "Record heap allocation stack traces",
27 "settingName": "recordAllocationStacks", 19 "settingName": "recordAllocationStacks",
28 "settingType": "boolean", 20 "settingType": "boolean",
29 "defaultValue": false 21 "defaultValue": false
30 }, 22 },
31 { 23 {
32 "type": "setting", 24 "type": "setting",
33 "category": "Profiler", 25 "category": "Profiler",
34 "title": "High resolution CPU profiling", 26 "title": "High resolution CPU profiling",
35 "settingName": "highResolutionCpuProfiling", 27 "settingName": "highResolutionCpuProfiling",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "HeapSnapshotView.js", 75 "HeapSnapshotView.js",
84 "ProfileLauncherView.js", 76 "ProfileLauncherView.js",
85 "ProfileTypeRegistry.js", 77 "ProfileTypeRegistry.js",
86 "TargetsComboBoxController.js" 78 "TargetsComboBoxController.js"
87 ], 79 ],
88 "resources": [ 80 "resources": [
89 "heapProfiler.css", 81 "heapProfiler.css",
90 "profilesPanel.css" 82 "profilesPanel.css"
91 ] 83 ]
92 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698