| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "heap_profiler", | 6 "id": "heap_profiler", |
| 7 "title": "Memory", | 7 "title": "Profiles", |
| 8 "order": 60, | 8 "order": 60, |
| 9 "className": "Profiler.HeapProfilerPanel" | 9 "className": "Profiler.HeapProfilerPanel" |
| 10 }, | 10 }, |
| 11 { | 11 { |
| 12 "type": "view", | |
| 13 "location": "panel", | |
| 14 "id": "js_profiler", | |
| 15 "title": "Profiler", | |
| 16 "order": 65, | |
| 17 "className": "Profiler.JSProfilerPanel", | |
| 18 "condition": "v8only" | |
| 19 }, | |
| 20 { | |
| 21 "type": "view", | |
| 22 "location": "panel", | |
| 23 "id": "js_profiler", | |
| 24 "title": "JavaScript Profiler", | |
| 25 "persistence": "closeable", | |
| 26 "order": 65, | |
| 27 "className": "Profiler.JSProfilerPanel", | |
| 28 "condition": "!v8only" | |
| 29 }, | |
| 30 { | |
| 31 "type": "@UI.ContextMenu.Provider", | 12 "type": "@UI.ContextMenu.Provider", |
| 32 "contextTypes": [ | 13 "contextTypes": [ |
| 33 "SDK.RemoteObject" | 14 "SDK.RemoteObject" |
| 34 ], | 15 ], |
| 35 "className": "Profiler.HeapProfilerPanel" | 16 "className": "Profiler.HeapProfilerPanel" |
| 36 }, | 17 }, |
| 37 { | 18 { |
| 38 "type": "setting", | 19 "type": "setting", |
| 39 "category": "Profiler", | 20 "category": "Profiler", |
| 40 "title": "Record heap allocation stack traces", | 21 "title": "Record heap allocation stack traces", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "ProfileLauncherView.js", | 107 "ProfileLauncherView.js", |
| 127 "ProfileTypeRegistry.js", | 108 "ProfileTypeRegistry.js", |
| 128 "TargetsComboBoxController.js" | 109 "TargetsComboBoxController.js" |
| 129 ], | 110 ], |
| 130 "resources": [ | 111 "resources": [ |
| 131 "heapProfiler.css", | 112 "heapProfiler.css", |
| 132 "profilesPanel.css", | 113 "profilesPanel.css", |
| 133 "profilesSidebarTree.css" | 114 "profilesSidebarTree.css" |
| 134 ] | 115 ] |
| 135 } | 116 } |
| OLD | NEW |