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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/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": "network", 6 "id": "network",
7 "title": "Network", 7 "title": "Network",
8 "order": 40, 8 "order": 40,
9 "className": "WebInspector.NetworkPanel" 9 "className": "WebInspector.NetworkPanel"
10 }, 10 },
(...skipping 24 matching lines...) Expand all
35 "type": "@WebInspector.ActionDelegate", 35 "type": "@WebInspector.ActionDelegate",
36 "actionId": "network.blocked-urls.show", 36 "actionId": "network.blocked-urls.show",
37 "className": "WebInspector.BlockedURLsPane.ActionDelegate", 37 "className": "WebInspector.BlockedURLsPane.ActionDelegate",
38 "iconClass": "block-toolbar-item", 38 "iconClass": "block-toolbar-item",
39 "title": "Block network requests" 39 "title": "Block network requests"
40 }, 40 },
41 { 41 {
42 "type": "@WebInspector.ActionDelegate", 42 "type": "@WebInspector.ActionDelegate",
43 "actionId": "network.toggle-recording", 43 "actionId": "network.toggle-recording",
44 "iconClass": "record-toolbar-item", 44 "iconClass": "record-toolbar-item",
45 "toggledIconClass": "active-recording-toolbar-item",
46 "toggleWithRedColor": true,
pfeldman 2016/12/10 00:11:39 I don't think this is particularly extensible.
45 "contextTypes": ["WebInspector.NetworkPanel"], 47 "contextTypes": ["WebInspector.NetworkPanel"],
46 "className": "WebInspector.NetworkPanel.RecordActionDelegate", 48 "className": "WebInspector.NetworkPanel.RecordActionDelegate",
47 "options": [ 49 "options": [
48 { "value": true, "title": "Record network log" }, 50 { "value": true, "title": "Record network log" },
49 { "value": false, "title": "Stop recording network log" } 51 { "value": false, "title": "Stop recording network log" }
50 ], 52 ],
51 "bindings": [ 53 "bindings": [
52 { 54 {
53 "platform": "windows,linux", 55 "platform": "windows,linux",
54 "shortcut": "Ctrl+E" 56 "shortcut": "Ctrl+E"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 "networkPanel.css", 123 "networkPanel.css",
122 "networkTimelineColumn.css", 124 "networkTimelineColumn.css",
123 "requestCookiesView.css", 125 "requestCookiesView.css",
124 "requestHeadersTree.css", 126 "requestHeadersTree.css",
125 "requestHeadersView.css", 127 "requestHeadersView.css",
126 "webSocketFrameView.css", 128 "webSocketFrameView.css",
127 "xmlTree.css", 129 "xmlTree.css",
128 "xmlView.css" 130 "xmlView.css"
129 ] 131 ]
130 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698