| 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 { |
| 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": "@WebInspector.Revealer", |
| 17 "contextTypes": ["WebInspector.ProfileHeader"], |
| 18 "className": "WebInspector.ProfilesPanel.ProfileRevealer" |
| 19 }, |
| 20 { |
| 16 "type": "ui-setting", | 21 "type": "ui-setting", |
| 17 "section": "Profiler", | 22 "section": "Profiler", |
| 18 "title": "Show advanced heap snapshot properties", | 23 "title": "Show advanced heap snapshot properties", |
| 19 "settingName": "showAdvancedHeapSnapshotProperties", | 24 "settingName": "showAdvancedHeapSnapshotProperties", |
| 20 "settingType": "checkbox" | 25 "settingType": "checkbox" |
| 21 }, | 26 }, |
| 22 { | 27 { |
| 23 "type": "ui-setting", | 28 "type": "ui-setting", |
| 24 "section": "Profiler", | 29 "section": "Profiler", |
| 25 "title": "High resolution CPU profiling", | 30 "title": "High resolution CPU profiling", |
| 26 "settingName": "highResolutionCpuProfiling", | 31 "settingName": "highResolutionCpuProfiling", |
| 27 "settingType": "checkbox" | 32 "settingType": "checkbox" |
| 28 } | 33 } |
| 29 ], | 34 ], |
| 30 "scripts": [ "ProfilesPanel.js" ] | 35 "scripts": [ "ProfilesPanel.js" ] |
| 31 } | 36 } |
| OLD | NEW |