| 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 { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "settingType": "boolean", | 28 "settingType": "boolean", |
| 29 "defaultValue": false | 29 "defaultValue": false |
| 30 }, | 30 }, |
| 31 { | 31 { |
| 32 "type": "setting", | 32 "type": "setting", |
| 33 "category": "Profiler", | 33 "category": "Profiler", |
| 34 "title": "High resolution CPU profiling", | 34 "title": "High resolution CPU profiling", |
| 35 "settingName": "highResolutionCpuProfiling", | 35 "settingName": "highResolutionCpuProfiling", |
| 36 "settingType": "boolean", | 36 "settingType": "boolean", |
| 37 "defaultValue": false | 37 "defaultValue": false |
| 38 }, |
| 39 { |
| 40 "type": "@WebInspector.ActionDelegate", |
| 41 "actionId": "profiler.toggle-recording", |
| 42 "iconClass": "record-toolbar-item", |
| 43 "className": "WebInspector.ProfilesPanel.RecordActionDelegate", |
| 44 "bindings": [ |
| 45 { |
| 46 "shortcut": "Ctrl+E" |
| 47 } |
| 48 ] |
| 38 } | 49 } |
| 39 ], | 50 ], |
| 40 "dependencies": [ | 51 "dependencies": [ |
| 41 "components", | 52 "components", |
| 42 "ui_lazy" | 53 "ui_lazy" |
| 43 ], | 54 ], |
| 44 "scripts": [ | 55 "scripts": [ |
| 45 "ProfilesPanel.js", | 56 "ProfilesPanel.js", |
| 46 "CPUProfileDataGrid.js", | 57 "CPUProfileDataGrid.js", |
| 47 "CPUProfileBottomUpDataGrid.js", | 58 "CPUProfileBottomUpDataGrid.js", |
| 48 "CPUProfileTopDownDataGrid.js", | 59 "CPUProfileTopDownDataGrid.js", |
| 49 "CPUProfileFlameChart.js", | 60 "CPUProfileFlameChart.js", |
| 50 "CPUProfileView.js", | 61 "CPUProfileView.js", |
| 51 "HeapSnapshotCommon.js", | 62 "HeapSnapshotCommon.js", |
| 52 "HeapSnapshotProxy.js", | 63 "HeapSnapshotProxy.js", |
| 53 "HeapSnapshotDataGrids.js", | 64 "HeapSnapshotDataGrids.js", |
| 54 "HeapSnapshotGridNodes.js", | 65 "HeapSnapshotGridNodes.js", |
| 55 "HeapSnapshotView.js", | 66 "HeapSnapshotView.js", |
| 56 "ProfileLauncherView.js", | 67 "ProfileLauncherView.js", |
| 57 "ProfileTypeRegistry.js", | 68 "ProfileTypeRegistry.js", |
| 58 "TargetsComboBoxController.js" | 69 "TargetsComboBoxController.js" |
| 59 ], | 70 ], |
| 60 "resources": [ | 71 "resources": [ |
| 61 "heapProfiler.css", | 72 "heapProfiler.css", |
| 62 "profilesPanel.css" | 73 "profilesPanel.css" |
| 63 ] | 74 ] |
| 64 } | 75 } |
| OLD | NEW |