| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "@WebInspector.PanelFactory", | 4 "type": "@WebInspector.PanelFactory", |
| 5 "name": "profiles", | 5 "name": "profiles", |
| 6 "title": "Profiles", | 6 "title": "Profiles", |
| 7 "order": 4, | 7 "order": 4, |
| 8 "className": "WebInspector.ProfilesPanelFactory" | 8 "className": "WebInspector.ProfilesPanelFactory" |
| 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": "ui-setting", | 16 "type": "setting", |
| 17 "section": "Profiler", | 17 "category": "Profiler", |
| 18 "title": "Show advanced heap snapshot properties", | 18 "title": "Show advanced heap snapshot properties", |
| 19 "settingName": "showAdvancedHeapSnapshotProperties", | 19 "settingName": "showAdvancedHeapSnapshotProperties", |
| 20 "settingType": "checkbox" | 20 "settingType": "boolean" |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 "type": "ui-setting", | 23 "type": "setting", |
| 24 "section": "Profiler", | 24 "category": "Profiler", |
| 25 "title": "Record heap allocation stack traces", | 25 "title": "Record heap allocation stack traces", |
| 26 "settingName": "recordAllocationStacks", | 26 "settingName": "recordAllocationStacks", |
| 27 "settingType": "checkbox" | 27 "settingType": "boolean" |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 "type": "ui-setting", | 30 "type": "setting", |
| 31 "section": "Profiler", | 31 "category": "Profiler", |
| 32 "title": "High resolution CPU profiling", | 32 "title": "High resolution CPU profiling", |
| 33 "settingName": "highResolutionCpuProfiling", | 33 "settingName": "highResolutionCpuProfiling", |
| 34 "settingType": "checkbox" | 34 "settingType": "boolean" |
| 35 } | 35 } |
| 36 ], | 36 ], |
| 37 "dependencies": [ | 37 "dependencies": [ |
| 38 "components", | 38 "components", |
| 39 "ui_lazy" | 39 "ui_lazy" |
| 40 ], | 40 ], |
| 41 "scripts": [ | 41 "scripts": [ |
| 42 "ProfilesPanel.js", | 42 "ProfilesPanel.js", |
| 43 "CPUProfileDataGrid.js", | 43 "CPUProfileDataGrid.js", |
| 44 "CPUProfileBottomUpDataGrid.js", | 44 "CPUProfileBottomUpDataGrid.js", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 55 "CanvasReplayStateView.js", | 55 "CanvasReplayStateView.js", |
| 56 "ProfileTypeRegistry.js", | 56 "ProfileTypeRegistry.js", |
| 57 "TargetsComboBoxController.js" | 57 "TargetsComboBoxController.js" |
| 58 ], | 58 ], |
| 59 "stylesheets": [ | 59 "stylesheets": [ |
| 60 "canvasProfiler.css", | 60 "canvasProfiler.css", |
| 61 "heapProfiler.css", | 61 "heapProfiler.css", |
| 62 "profilesPanel.css" | 62 "profilesPanel.css" |
| 63 ] | 63 ] |
| 64 } | 64 } |
| OLD | NEW |