| 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": 4, | 7 "order": 4, |
| 8 "className": "WebInspector.ProfilesPanel" | 8 "className": "WebInspector.ProfilesPanel" |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "settingType": "checkbox" | 27 "settingType": "checkbox" |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 "type": "ui-setting", | 30 "type": "ui-setting", |
| 31 "section": "Profiler", | 31 "section": "Profiler", |
| 32 "title": "High resolution CPU profiling", | 32 "title": "High resolution CPU profiling", |
| 33 "settingName": "highResolutionCpuProfiling", | 33 "settingName": "highResolutionCpuProfiling", |
| 34 "settingType": "checkbox" | 34 "settingType": "checkbox" |
| 35 } | 35 } |
| 36 ], | 36 ], |
| 37 "scripts": [ | 37 "scripts": [ "ProfilesPanel.js" ] |
| 38 "ProfilesPanel.js", | |
| 39 "CPUProfileDataGrid.js", | |
| 40 "CPUProfileBottomUpDataGrid.js", | |
| 41 "CPUProfileTopDownDataGrid.js", | |
| 42 "CPUProfileFlameChart.js", | |
| 43 "CPUProfileView.js", | |
| 44 "HeapSnapshotCommon.js", | |
| 45 "HeapSnapshotProxy.js", | |
| 46 "HeapSnapshotDataGrids.js", | |
| 47 "HeapSnapshotGridNodes.js", | |
| 48 "HeapSnapshotView.js", | |
| 49 "ProfileLauncherView.js", | |
| 50 "CanvasProfileView.js", | |
| 51 "CanvasReplayStateView.js", | |
| 52 "ProfileTypeRegistry.js" | |
| 53 ] | |
| 54 } | 38 } |
| OLD | NEW |