Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(638)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/profiler/module.json

Issue 2560353002: DevTools: move the GC button into the memory panel. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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": "Profiler.ProfilesPanel", 9 "className": "Profiler.ProfilesPanel",
10 "condition": "v8only" 10 "condition": "v8only"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "bindings": [ 58 "bindings": [
59 { 59 {
60 "platform": "windows,linux", 60 "platform": "windows,linux",
61 "shortcut": "Ctrl+E" 61 "shortcut": "Ctrl+E"
62 }, 62 },
63 { 63 {
64 "platform": "mac", 64 "platform": "mac",
65 "shortcut": "Meta+E" 65 "shortcut": "Meta+E"
66 } 66 }
67 ] 67 ]
68 },
69 {
70 "type": "@UI.ActionDelegate",
71 "actionId": "profiler.collect-garbage",
72 "title": "Collect garbage",
73 "iconClass": "largeicon-trash-bin",
74 "className": "Profiler.ProfilesPanel.GCActionDelegate"
68 } 75 }
69 ], 76 ],
70 "dependencies": [ 77 "dependencies": [
71 "components", 78 "components",
72 "components_lazy", 79 "components_lazy",
73 "ui_lazy" 80 "ui_lazy"
74 ], 81 ],
75 "scripts": [ 82 "scripts": [
76 "ProfilesPanel.js", 83 "ProfilesPanel.js",
77 "ProfileView.js", 84 "ProfileView.js",
(...skipping 11 matching lines...) Expand all
89 "ProfileLauncherView.js", 96 "ProfileLauncherView.js",
90 "ProfileTypeRegistry.js", 97 "ProfileTypeRegistry.js",
91 "TargetsComboBoxController.js" 98 "TargetsComboBoxController.js"
92 ], 99 ],
93 "resources": [ 100 "resources": [
94 "heapProfiler.css", 101 "heapProfiler.css",
95 "profilesPanel.css", 102 "profilesPanel.css",
96 "profilesSidebarTree.css" 103 "profilesSidebarTree.css"
97 ] 104 ]
98 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698