| OLD | NEW |
| 1 { | 1 { |
| 2 "extensions": [ | 2 "extensions": [ |
| 3 { | 3 { |
| 4 "type": "view", | 4 "type": "view", |
| 5 "location": "panel", | 5 "location": "panel", |
| 6 "id": "profiles", | 6 "id": "profiles", |
| 7 "title": "Profiles", | 7 "title": "Profiles", |
| 8 "order": 60, | 8 "order": 60, |
| 9 "className": "WebInspector.ProfilesPanel" | 9 "className": "Profiler.ProfilesPanel" |
| 10 }, | 10 }, |
| 11 { | 11 { |
| 12 "type": "@WebInspector.ContextMenu.Provider", | 12 "type": "@UI.ContextMenu.Provider", |
| 13 "contextTypes": ["WebInspector.RemoteObject"], | 13 "contextTypes": ["SDK.RemoteObject"], |
| 14 "className": "WebInspector.ProfilesPanel.ContextMenuProvider" | 14 "className": "Profiler.ProfilesPanel.ContextMenuProvider" |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "type": "setting", | 17 "type": "setting", |
| 18 "category": "Profiler", | 18 "category": "Profiler", |
| 19 "title": "Record heap allocation stack traces", | 19 "title": "Record heap allocation stack traces", |
| 20 "settingName": "recordAllocationStacks", | 20 "settingName": "recordAllocationStacks", |
| 21 "settingType": "boolean", | 21 "settingType": "boolean", |
| 22 "defaultValue": false | 22 "defaultValue": false |
| 23 }, | 23 }, |
| 24 { | 24 { |
| 25 "type": "setting", | 25 "type": "setting", |
| 26 "category": "Profiler", | 26 "category": "Profiler", |
| 27 "title": "High resolution CPU profiling", | 27 "title": "High resolution CPU profiling", |
| 28 "settingName": "highResolutionCpuProfiling", | 28 "settingName": "highResolutionCpuProfiling", |
| 29 "settingType": "boolean", | 29 "settingType": "boolean", |
| 30 "defaultValue": true | 30 "defaultValue": true |
| 31 }, | 31 }, |
| 32 { | 32 { |
| 33 "type": "setting", | 33 "type": "setting", |
| 34 "category": "Profiler", | 34 "category": "Profiler", |
| 35 "title": "Show native functions in JS Profile", | 35 "title": "Show native functions in JS Profile", |
| 36 "settingName": "showNativeFunctionsInJSProfile", | 36 "settingName": "showNativeFunctionsInJSProfile", |
| 37 "settingType": "boolean", | 37 "settingType": "boolean", |
| 38 "defaultValue": false | 38 "defaultValue": false |
| 39 }, | 39 }, |
| 40 { | 40 { |
| 41 "type": "@WebInspector.ActionDelegate", | 41 "type": "@UI.ActionDelegate", |
| 42 "actionId": "profiler.toggle-recording", | 42 "actionId": "profiler.toggle-recording", |
| 43 "iconClass": "largeicon-start-recording", | 43 "iconClass": "largeicon-start-recording", |
| 44 "toggledIconClass": "largeicon-stop-recording", | 44 "toggledIconClass": "largeicon-stop-recording", |
| 45 "toggleWithRedColor": true, | 45 "toggleWithRedColor": true, |
| 46 "contextTypes": ["WebInspector.ProfilesPanel"], | 46 "contextTypes": ["Profiler.ProfilesPanel"], |
| 47 "className": "WebInspector.ProfilesPanel.RecordActionDelegate", | 47 "className": "Profiler.ProfilesPanel.RecordActionDelegate", |
| 48 "bindings": [ | 48 "bindings": [ |
| 49 { | 49 { |
| 50 "platform": "windows,linux", | 50 "platform": "windows,linux", |
| 51 "shortcut": "Ctrl+E" | 51 "shortcut": "Ctrl+E" |
| 52 }, | 52 }, |
| 53 { | 53 { |
| 54 "platform": "mac", | 54 "platform": "mac", |
| 55 "shortcut": "Meta+E" | 55 "shortcut": "Meta+E" |
| 56 } | 56 } |
| 57 ] | 57 ] |
| (...skipping 21 matching lines...) Expand all Loading... |
| 79 "ProfileLauncherView.js", | 79 "ProfileLauncherView.js", |
| 80 "ProfileTypeRegistry.js", | 80 "ProfileTypeRegistry.js", |
| 81 "TargetsComboBoxController.js" | 81 "TargetsComboBoxController.js" |
| 82 ], | 82 ], |
| 83 "resources": [ | 83 "resources": [ |
| 84 "heapProfiler.css", | 84 "heapProfiler.css", |
| 85 "profilesPanel.css", | 85 "profilesPanel.css", |
| 86 "profilesSidebarTree.css" | 86 "profilesSidebarTree.css" |
| 87 ] | 87 ] |
| 88 } | 88 } |
| OLD | NEW |