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

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

Issue 2482593003: DevTools: eliminate ToolbarButton.setState method; cleanup toolbar.css (Closed)
Patch Set: kill ToolbarToggle.setActive() Created 4 years, 1 month 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": "WebInspector.ProfilesPanel" 9 "className": "WebInspector.ProfilesPanel"
10 }, 10 },
(...skipping 23 matching lines...) Expand all
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": "@WebInspector.ActionDelegate",
42 "actionId": "profiler.toggle-recording", 42 "actionId": "profiler.toggle-recording",
43 "iconClass": "record-toolbar-item", 43 "iconClass": "record-toolbar-item",
44 "toggledIconClass": "active-recording-toolbar-item",
45 "toggleWithRedColor": true,
44 "contextTypes": ["WebInspector.ProfilesPanel"], 46 "contextTypes": ["WebInspector.ProfilesPanel"],
45 "className": "WebInspector.ProfilesPanel.RecordActionDelegate", 47 "className": "WebInspector.ProfilesPanel.RecordActionDelegate",
46 "bindings": [ 48 "bindings": [
47 { 49 {
48 "platform": "windows,linux", 50 "platform": "windows,linux",
49 "shortcut": "Ctrl+E" 51 "shortcut": "Ctrl+E"
50 }, 52 },
51 { 53 {
52 "platform": "mac", 54 "platform": "mac",
53 "shortcut": "Meta+E" 55 "shortcut": "Meta+E"
(...skipping 23 matching lines...) Expand all
77 "ProfileLauncherView.js", 79 "ProfileLauncherView.js",
78 "ProfileTypeRegistry.js", 80 "ProfileTypeRegistry.js",
79 "TargetsComboBoxController.js" 81 "TargetsComboBoxController.js"
80 ], 82 ],
81 "resources": [ 83 "resources": [
82 "heapProfiler.css", 84 "heapProfiler.css",
83 "profilesPanel.css", 85 "profilesPanel.css",
84 "profilesSidebarTree.css" 86 "profilesSidebarTree.css"
85 ] 87 ]
86 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698