OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |